export declare function useListDocVariables({ columns: rawColumns, goDoc, goEdit, goPublicPage, goPrivatePage, singularName, list, setSortModel, setSearchMode, listRoute, name, filterName, deleteDoc, queryName, fetchSortVariables, searchMode, cursor, page, navigationMode, key, setPage, pPage, }: { name: string; queryName: string; searchMode: boolean; cursor?: string; page: any; fetchSortVariables: any; navigationMode: string; filterName?: string; deleteDoc: Function; setPage: Function; key: string; listRoute: string; setSearchMode: Function; setSortModel: Function; pPage: string; singularName: string; goEdit: Function; goDoc: Function; goPublicPage: Function; goPrivatePage: Function; list: any; columns?: any; }): { items: any; errorProps: { error: any; }; tableProps: { items: any; loading: any; onSortModelChange: (model: any) => void; onPageSizeChange: (params: import("@material-ui/data-grid").GridPageChangeParams) => void; onPageChange: (params: any) => void; columns: any; total: any; }; toolbarProps: { items: any; loading: any; nextCursor: any; switchDefaultValues: { searchMode: boolean; }; handleSwitchChange: (e: any) => void; displayPage: boolean; total: any; }; }; export default useListDocVariables; //# sourceMappingURL=useListDocVariables.d.ts.map