import { type FileInputProps } from '@uppy/components'; export type VueFileInputFunctions = { getInputProps: () => { id: string; type: 'file'; multiple: boolean; accept?: string; onchange: (event: Event) => void; }; getButtonProps: () => { type: 'button'; onclick: () => void; }; }; export declare function useFileInput(props?: FileInputProps): VueFileInputFunctions; //# sourceMappingURL=useFileInput.d.ts.map