export declare const PaymentChannelType: {
    readonly SubscriptionDelegated: "SubscriptionDelegated";
    readonly CustomerDelegated: "CustomerDelegated";
};
/**
 * The Payment channel for the SaasSubscription.
 */
export type PaymentChannelType = (typeof PaymentChannelType)[keyof typeof PaymentChannelType];
