export interface ImagePickerProps {
    label: string;
    onFilesSelect: (files: File[]) => void;
    accept?: string;
    multiple: boolean;
    className?: string;
    disabled: boolean;
}
export interface ImagePickerHandle {
    open(): void;
}
export declare const ImagePicker: import("react").ForwardRefExoticComponent<ImagePickerProps & import("react").RefAttributes<unknown>>;
