import React, { type ReactNode } from 'react';
import type { BaseProps } from '../BaseProps';
export interface CommandPaletteEmptyProps extends BaseProps<HTMLDivElement> {
    ref?: React.Ref<HTMLDivElement>;
    /** The message or content to display. */
    children: ReactNode;
}
/**
 * Empty state for the command palette list area.
 *
 * Rendered automatically by CommandPalette in two situations:
 * - `emptyBootstrapText`: no search term and bootstrap() returns nothing
 * - `emptySearchText`: a search query returned no results
 *
 * Can also be composed manually inside a custom render function.
 *
 * @example
 * ```
 * <CommandPalette
 *   emptyBootstrapText={<CommandPaletteEmpty>Start typing to search</CommandPaletteEmpty>}
 *   emptySearchText={<CommandPaletteEmpty>No results found</CommandPaletteEmpty>}
 *   searchSource={source}
 * />
 * ```
 */
export declare function CommandPaletteEmpty({ ref, children, xstyle, className, style, ...props }: CommandPaletteEmptyProps): React.JSX.Element;
export declare namespace CommandPaletteEmpty {
    var displayName: string;
}
//# sourceMappingURL=CommandPaletteEmpty.d.ts.map