import { IFile, IFolder } from '@wix/quix-shared'; export declare const setFolder: (folder: IFolder) => { type: string; folder: IFolder; }; export declare const setError: (error: any) => { type: string; error: any; }; export declare const setFileError: (error: any) => { type: string; error: any; }; export declare const toggleMark: (file: IFile) => { type: string; file: IFile; }; export declare const unmarkAll: () => { type: string; };