interface CfaRecurrence { /** * */ pattern?: "Daily" | "Weekly" | "Monthly"; /** * */ value?: string; } export default CfaRecurrence;