import { BillPaySetupApproverView, CurrentTenant, RemiSetupApproverView } from '@zeniai/client-epic-state'; /** * Component & its Props */ export interface Props { billpayApprovalView: BillPaySetupApproverView; currentTenant: CurrentTenant; remiApproverView: RemiSetupApproverView; onBackClick: () => void; onClickMenuIcon: () => void; onSetupApprovalRulesBillPaySectionClick: () => void; onSetupApprovalRulesRemiSectionClick: () => void; } declare const ApprovalRulesSettingsPage: ({ billpayApprovalView, currentTenant, onBackClick, onClickMenuIcon, onSetupApprovalRulesBillPaySectionClick, onSetupApprovalRulesRemiSectionClick, remiApproverView, }: Props) => import("react/jsx-runtime").JSX.Element; export default ApprovalRulesSettingsPage;