import { BooleanType } from "../../global"; export declare enum RecurUnitType { DAY = "day", WEEK = "week", MONTH = "month", EOM = "eom" } export interface RecurringBillingInterface { number_of_recurs?: number; recur_period?: number; recur_amount?: number; recur_unit?: RecurUnitType; start_date?: string; bill_now?: BooleanType; }