import { MaybeRefOrGetter } from 'vue'; import { IFilePickerState } from './use-file-picker-state.js'; export interface IUseFilePickerProps { /** * When disabled, user input is ignored. * * @default false */ isDisabled?: MaybeRefOrGetter; /** * Callback on cancel (Escape in browse mode). */ onCancel?: () => void; /** * File picker state. */ state: IFilePickerState; } export declare const useFilePicker: ({ isDisabled, onCancel, state, }: IUseFilePickerProps) => void; //# sourceMappingURL=use-file-picker.d.ts.map