import { ChargePeriod } from '../constants';
import { BaseResponse, FeatureListItem } from './common';
export interface CreateCheckoutSessionPayload {
    pricingTableId?: string | null;
    ruleId?: string | null;
    chargePeriod: ChargePeriod;
    customerId?: string | null;
    features?: FeatureListItem[] | null;
    planIdentifier: string;
    offeringId?: string | null;
    successUrl: string;
    ipAddress?: string | null;
}
export interface CreateCheckoutSessionResponse extends BaseResponse {
    checkoutSessionId: string;
    checkoutUrl: string;
}
//# sourceMappingURL=checkout.d.ts.map