import { UserBE, USER_ROLE } from "../../type"; export declare const USER_DRAWER: { readonly FILTER_DRAWER: string; readonly FORM_DRAWER: string; readonly MORE_ACTIONS_DRAWER: string; readonly VIEW_DRAWER: string; }; export declare const USER_ACTION_TYPES: { readonly RESET_FORM: "RESET_FORM"; readonly SET_CURRENT_PAGE: "SET_CURRENT_PAGE"; readonly SET_PAGE_LIMIT: "SET_PAGE_LIMIT"; readonly SET_SEARCH_QUERY: "SET_SEARCH_QUERY"; readonly SET_DRAWER: "SET_DRAWER"; readonly SET_ITEMS: "SET_ITEMS"; readonly SET_FORM_DATA: "SET_FORM_DATA"; readonly SET_DISABLE_SAVE_BUTTON: "SET_DISABLE_SAVE_BUTTON"; readonly SET_INPUT_FIELD: "SET_INPUT_FIELD"; readonly SET_ERRORS: "SET_ERRORS"; readonly SET_FILTERS: "SET_FILTERS"; }, userModuleConfig: import("@react-pakistan/util-functions/factory/generic-module-factory").ModuleConfig<{ items: UserBE[]; count: number; currentPage: number; pageLimit: number; searchQuery: string; disableSaveButton: boolean; drawer: string | null; errors: Record; id: string; name: string; email: string; phone: string; avatar: string; password: string; enabled: boolean; userRole: USER_ROLE | null; filterEnabled: boolean | undefined; }>, initialUserState: { items: UserBE[]; count: number; currentPage: number; pageLimit: number; searchQuery: string; disableSaveButton: boolean; drawer: string | null; errors: Record; id: string; name: string; email: string; phone: string; avatar: string; password: string; enabled: boolean; userRole: USER_ROLE | null; filterEnabled: boolean | undefined; }, UserProvider: import("react").FC<{ children: React.ReactNode; }>, userReducer: (state: { items: UserBE[]; count: number; currentPage: number; pageLimit: number; searchQuery: string; disableSaveButton: boolean; drawer: string | null; errors: Record; id: string; name: string; email: string; phone: string; avatar: string; password: string; enabled: boolean; userRole: USER_ROLE | null; filterEnabled: boolean | undefined; }, action: any) => { items: UserBE[]; count: number; currentPage: number; pageLimit: number; searchQuery: string; disableSaveButton: boolean; drawer: string | null; errors: Record; id: string; name: string; email: string; phone: string; avatar: string; password: string; enabled: boolean; userRole: USER_ROLE | null; filterEnabled: boolean | undefined; }, useUserContext: () => import("@react-pakistan/util-functions/factory/generic-module-factory").GenericModuleContextWithHandlers<{ items: UserBE[]; count: number; currentPage: number; pageLimit: number; searchQuery: string; disableSaveButton: boolean; drawer: string | null; errors: Record; id: string; name: string; email: string; phone: string; avatar: string; password: string; enabled: boolean; userRole: USER_ROLE | null; filterEnabled: boolean | undefined; }>; export { useUserModule } from "./context/use-user-module";