import type { FetchConfig } from "@react-pakistan/util-functions/hooks/use-fetch"; export interface FeeStructureApiContextType { listFetchNow: (url?: string, config?: FetchConfig) => void; listLoading: boolean; updateFetchNow: (url?: string, config?: FetchConfig) => void; updateLoading: boolean; byIdFetchNow: (url?: string, config?: FetchConfig) => void; byIdLoading: boolean; deleteFetchNow?: (url?: string, config?: FetchConfig) => void; deleteLoading: boolean; resetFormAndCloseDrawer: () => void; } export declare const useFeeStructureApiContext: () => FeeStructureApiContextType; export declare const FeeStructureApiProvider: ({ children, }: { children: React.ReactNode; }) => import("react").JSX.Element;