import { type RowAction, type TableRow } from "@appcorp/shadcn/components/enhanced-table"; import { FEE_TYPE } from "../../../type"; export declare const useFeeStructureModule: () => { applyFilters: () => void; byIdLoading: boolean; clearFilters: () => void; clearSearch: () => void; closeDrawer: () => void; deleteLoading: boolean; handleChange: (field: string, value: string | number | boolean | FEE_TYPE | null | undefined) => 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: () => void; 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; rowActions: RowAction[]; toggleStatus: (row?: TableRow) => void; updateLoading: boolean; handleCloseDrawer?: () => void; state: { items: import("../../../types").FeeStructureBE[]; count: number; currentPage: number; pageLimit: number; searchQuery: string; disableSaveButton: boolean; drawer: string | null; amount: number; classId: string | null; description: string | null; enabled: boolean; errors: Record; feeType: FEE_TYPE; filterEnabled: boolean | undefined; frequency: string | null; id: string; name: string; schoolId: string; }; dispatch: React.Dispatch; };