import * as React from 'react';
export interface CommandPaletteInputProps {
    progress?: number;
    icon?: React.ReactNode;
    before?: React.ReactNode;
    value?: string;
    placeholder?: string;
    loading?: boolean;
    disabled?: boolean;
    children?: React.ReactNode;
    onChange?: (value: string) => void;
    onDeleteBefore?: () => void;
    onKeyUp?: () => void;
    onKeyDown?: () => void;
    onClear?: () => void;
    onComplete?: () => void;
    onEnter?: () => void;
}
export declare const CommandPaletteInput: React.FC<CommandPaletteInputProps>;
