import type { ReactNode } from 'react';
import type { BaseProps } from '../BaseProps';
export interface CommandPaletteFooterProps extends BaseProps<HTMLDivElement> {
    /** Ref forwarded to the footer element. */
    ref?: React.Ref<HTMLDivElement>;
    /**
     * Footer content. When provided, renders custom content instead of default hints.
     * Custom children inherit the footer font treatment (supporting/12px, secondary color).
     * When omitted, renders default keyboard navigation hints using Kbd.
     */
    children?: ReactNode;
}
/**
 * Footer for the command palette showing keyboard navigation hints.
 *
 * When no children are provided, renders default hints using Kbd
 * for arrow keys, Enter to select, and Escape to close.
 *
 * @compositionHint Pass to CommandPalette's `footer` slot.
 *
 * @example
 * ```
 * <CommandPalette
 *   isOpen={isOpen}
 *   onOpenChange={setIsOpen}
 *   input={<CommandPaletteInput />}
 *   footer={<CommandPaletteFooter />}>
 *   <CommandPaletteList>...</CommandPaletteList>
 * </CommandPalette>
 * ```
 */
export declare function CommandPaletteFooter({ children, ref, xstyle, className, style, ...props }: CommandPaletteFooterProps): import("react").JSX.Element;
export declare namespace CommandPaletteFooter {
    var displayName: string;
}
//# sourceMappingURL=CommandPaletteFooter.d.ts.map