import * as State from "./types/State";
import * as Actions from "./types/Actions";
export declare const actions: {
    loadError: Actions.LoadError;
    loadSuccess: Actions.LoadSuccess;
    setSearch: Actions.SetSearchValue;
    search: Actions.Search;
    selectItem: Actions.SelectItem;
    bulkSelect: Actions.BulkSelect;
    unSelectAll: Actions.UnSelectAll;
    prev: Actions.Prev;
    next: Actions.Next;
    insertFiles: Actions.InsertFiles;
    insertFilesError: Actions.InsertFilesError;
};
export declare const actionsMap: Actions.Actions[];
export declare const states: {
    init: State.Init;
    initPrev: State.Init;
    initNext: State.Init;
    initWithSearch: State.Init;
    loadError: State.LoadError;
    ready: State.Ready;
    readyWithSearch: State.Ready;
    readyInsertFiles: State.InsertFromReady;
    readySelected: State.Ready;
    nothingSelectedReady: State.Ready;
    nothingSelected: State.NothingSelected;
    nothingSelectedInit: State.NothingSelected;
    nothingSelectedWithSearch: State.NothingSelected;
    nothingSelectedPagination: State.NothingSelected;
    bulkSelectReady: State.BulkSelectReady;
    bulkSelectReadyWithSearch: State.BulkSelectReady;
    bulkSelectReadyInsertFiles: State.InsertFromBulkSelectReady;
    bulkSelectMultipleReady: State.BulkSelectMultiple;
    bulkNothingSelectedReady: State.BulkSelectReady;
    bulkSelectNothing: State.BulkSelectNothing;
    bulkSelectNothingWithSearch: State.BulkSelectNothing;
    bulkSelectNothingPagination: State.BulkSelectNothing;
    bulkSelectMultiple: State.BulkSelectMultiple;
    bulkSelectMultipleWithSearch: State.BulkSelectMultiple;
    bulkSelectMultipleInsertFiles: State.InsertFromBulkSelectMultiple;
};
