import { IContractV2Request } from '../types/contract.types'; import { IPlansPricing, IPlansResponseSchema } from '../types/plans.types'; export declare const firstDayOfOneMonthAgo: string | null; export declare const applyPlanSchedule: (startDate: string | null, schedule: IPlansResponseSchema["schedule"]) => { start_date: string | null; end_date: string; }; export declare const applyPlanToContract: (contract: IContractV2Request | null, plan?: IPlansResponseSchema | null) => IContractV2Request | null; export declare const constructContractRequest: (plan?: IPlansResponseSchema | null, customerId?: string) => IContractV2Request; export declare const sanitizedCopy: (phasePricing: IPlansPricing) => { pricingType: string; cadence: string; quantity: string; price: string | import('../types/products.types').IEdgeInput | undefined; packageSize: string | number; };