import { Store } from '../../lib/store'; import { App } from '../../lib/app'; import { IScope } from './files-types'; import { IFile, IFilePathItem } from '@wix/quix-shared'; export declare const onNameChange: (scope: IScope, store: Store, app: App) => (folder: IFile) => void; export declare const onChildNameChange: (scope: IScope, store: Store, app: App) => (file: IFile) => void; export declare const onDelete: (scope: IScope, store: Store, app: App) => (folder: IFile) => void; export declare const onShare: (scope: IScope, store: Store, app: App) => (folder: IFile) => void; export declare const onLikeToggle: (scope: IScope, store: Store, app: App) => (file: IFile) => void; export declare const onBreadcrumbClick: (scope: IScope, store: Store, app: App) => (file: IFilePathItem) => void; export declare const onFileClick: (scope: IScope, store: Store, app: App) => (file: IFile) => void; export declare const onGoToRootClick: (scope: IScope, store: Store, app: App) => () => void; export declare const onFolderAdd: (scope: IScope, store: Store, app: App) => () => void; export declare const onNotebookAdd: (scope: IScope, store: Store, app: App) => () => void; export declare const onMarkToggle: (scope: IScope, store: Store, app: App) => (file: IFile) => void; export declare const onUnmarkAll: (scope: IScope, store: Store, app: App) => () => void; export declare const onMarkedDelete: (scope: IScope, store: Store, app: App) => (files: IFile[]) => void; export declare const $onDestroy: (scope: IScope, store: Store, app: App) => () => void;