import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; accept?: string; multiple?: boolean; title?: string; files?: any; }; events: { change: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type UploadProps = typeof __propDef.props; export declare type UploadEvents = typeof __propDef.events; export declare type UploadSlots = typeof __propDef.slots; export default class Upload extends SvelteComponentTyped { } export {};