import { StoreDispatchType, FilterConfig } from '../types'; export declare const copier: ({ store, dispatch }: StoreDispatchType) => Promise; export declare const cutter: ({ store, dispatch }: StoreDispatchType) => Promise; export declare const paster: ({ store, dispatch }: StoreDispatchType, onlyValue?: boolean) => Promise; export declare const undoer: ({ store, dispatch }: StoreDispatchType) => Promise; export declare const redoer: ({ store, dispatch }: StoreDispatchType) => Promise; export declare const rowsInserterAbove: ({ store, dispatch }: StoreDispatchType) => Promise; export declare const rowsInserterBelow: ({ store, dispatch }: StoreDispatchType) => Promise; export declare const colsInserterLeft: ({ store, dispatch }: StoreDispatchType) => Promise; export declare const colsInserterRight: ({ store, dispatch }: StoreDispatchType) => Promise; export declare const rowsRemover: ({ store, dispatch }: StoreDispatchType) => Promise; export declare const colsRemover: ({ store, dispatch }: StoreDispatchType) => Promise; export declare const rowsSorterAsc: ({ store, dispatch }: StoreDispatchType, x: number) => Promise; export declare const rowsSorterDesc: ({ store, dispatch }: StoreDispatchType, x: number) => Promise; export declare const rowsFilterer: ({ store, dispatch }: StoreDispatchType, x: number, filter: FilterConfig) => Promise; export declare const rowsFilterClearer: ({ store, dispatch }: StoreDispatchType, x?: number) => Promise; export declare const rowSortFixedToggler: ({ store, dispatch }: StoreDispatchType, y: number) => void; export declare const rowFilterFixedToggler: ({ store, dispatch }: StoreDispatchType, y: number) => void; export declare const searcher: ({ store, dispatch }: StoreDispatchType) => Promise; export declare const applyers: { copy: ({ store, dispatch }: StoreDispatchType) => Promise; cut: ({ store, dispatch }: StoreDispatchType) => Promise; paste: ({ store, dispatch }: StoreDispatchType, onlyValue?: boolean) => Promise; undo: ({ store, dispatch }: StoreDispatchType) => Promise; redo: ({ store, dispatch }: StoreDispatchType) => Promise; insertRowsAbove: ({ store, dispatch }: StoreDispatchType) => Promise; insertRowsBelow: ({ store, dispatch }: StoreDispatchType) => Promise; insertColsLeft: ({ store, dispatch }: StoreDispatchType) => Promise; insertColsRight: ({ store, dispatch }: StoreDispatchType) => Promise; removeRows: ({ store, dispatch }: StoreDispatchType) => Promise; removeCols: ({ store, dispatch }: StoreDispatchType) => Promise; sortRowsAsc: ({ store, dispatch }: StoreDispatchType, x: number) => Promise; sortRowsDesc: ({ store, dispatch }: StoreDispatchType, x: number) => Promise; filterRows: ({ store, dispatch }: StoreDispatchType, x: number, filter: FilterConfig) => Promise; clearFilter: ({ store, dispatch }: StoreDispatchType, x?: number) => Promise; toggleSortFixed: ({ store, dispatch }: StoreDispatchType, y: number) => void; toggleFilterFixed: ({ store, dispatch }: StoreDispatchType, y: number) => void; search: ({ store, dispatch }: StoreDispatchType) => Promise; }; //# sourceMappingURL=applyers.d.ts.map