import { FeeStructureBE, FEE_TYPE } from "../../../type"; export declare const FEE_STRUCTURE_DRAWER: { readonly FILTER_DRAWER: string; readonly FORM_DRAWER: string; readonly MORE_ACTIONS_DRAWER: string; readonly VIEW_DRAWER: string; }; export interface FeeStructuresListResponse { items: FeeStructureBE[]; count: number; currentPage: number; pageLimit: number; } export declare const FEE_STRUCTURE_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"; }, feeStructureModuleConfig: import("@react-pakistan/util-functions/factory/generic-module-factory").ModuleConfig<{ items: 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; }>, initialFeeStructureState: { items: 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; }, FeeStructureProvider: import("react").FC<{ children: React.ReactNode; }>, feeStructureReducer: (state: { items: 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; }, action: any) => { items: 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; }, useFeeStructureContext: () => import("@react-pakistan/util-functions/factory/generic-module-factory").GenericModuleContextWithHandlers<{ items: 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; }>;