import type { FileInputEvent } from "../component";
export interface Input {
}
class {
    declare state: {
    files: [File, string | undefined][];
};
    onCreate(): void { return 1 as any; }
    handleInput({ files }: FileInputEvent): void { return 1 as any; }
    handleDelete(index: number): void { return 1 as any; }
}
