import { UserBE, USER_ROLE } from "../../../type"; import { type RowAction, type TableRow } from "@appcorp/shadcn/components/enhanced-table"; export declare const useUserModule: () => { applyFilters: () => void; byIdLoading: boolean; clearFilters: () => void; clearSearch: () => void; closeDrawer: () => void; deleteLoading: boolean; handleAvatar: (files: File[]) => void; handleChange: (field: string, value: string | number | boolean | undefined | null) => void; handleCreate: () => void; handleDelete: (row?: TableRow) => void; handleEdit: (row?: TableRow) => void; handleFilters: () => void; handleMoreActions: () => void; handlePageChange: (page: number | unknown) => void; handlePageLimitChange: (k: string, value: object) => void; handleSearch: (query: string) => void; handleSubmit: () => Promise; handleView: (row?: TableRow) => void; headerActions: { enabled: boolean; handleOnClick: () => void; label: string; order: number; }[]; listFetchNow: (url?: string, config?: import("@react-pakistan/util-functions/hooks/use-fetch").FetchConfig) => void; listLoading: boolean; resetRecordFormState: () => void; rowActions: RowAction[]; toggleStatus: (row?: TableRow) => void; updateLoading: boolean; handleCloseDrawer?: () => void; 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; }; dispatch: React.Dispatch; };