import { type FileInputProps } from "@uppy/components"; export type SvelteFileInputFunctions = { getInputProps: () => { id: string; type: "file"; multiple: boolean; accept?: string; onchange: (event: Event) => void; }; getButtonProps: () => { type: "button"; onclick: () => void; }; }; export declare function useFileInput(props?: FileInputProps): SvelteFileInputFunctions;