export interface GalleryInputProps { onChange: (files: (File | string)[]) => void; value?: (File | string)[]; disabled?: boolean; } export declare function GalleryInput(props: GalleryInputProps): import("react/jsx-runtime").JSX.Element;