import * as React from 'react';
export interface CommandPaletteItemProps {
    button?: boolean;
    autoFocus?: boolean;
    icon?: React.ReactNode;
    selected?: boolean;
    disabled?: boolean;
    actionLabel?: React.ReactNode;
    children?: React.ReactNode;
    onSelect?: () => void;
    onClick?: () => void;
    onDeleteBefore?: () => void;
    onTabBack?: () => void;
}
export declare const CommandPaletteItem: React.FC<CommandPaletteItemProps>;
