import { FC } from "react"; import { USER_ROLE } from "../../type"; interface ConfigProps { clearFilters: () => void; drawerButtonCancel: string; drawerButtonSave: string; drawerFilterDescription: string; drawerFilterTitle: string; drawerFormDescription: string; drawerFormTitle: string; drawerMoreActionsDescription: string; drawerMoreActionsTitle: string; drawerViewDescription: string; drawerViewTitle: string; tableColumnHeaderActions: string; tableColumnHeaderAmount: string; tableColumnHeaderDescription: string; tableColumnHeaderEnabled: string; tableColumnHeaderFeeType: string; tableColumnHeaderFrequency: string; tableColumnHeaderId: string; tableColumnHeaderName: string; tableDescription: string; tableSearchPlaceholder: string; tableTitle: string; } interface Props extends Omit { userRole: USER_ROLE; } export declare const FeeStructurePage: FC; export {};