import { Customer, DeletedCustomer } from '../types/stripe'; export declare class CreateOrgSubscriptionDTO { orgId: string; planId: string; stripeSourceId: string; email: string; name: string; } export declare class UpdateOrgSubscriptionDTO { id: string; planId: string; stripeSourceId?: string; } export declare class OrgSubscriptionResponseDTO { organizationId: string; id: string; subscriptionPlanId: string; createdAt: Date; stripeCustomer: Customer | DeletedCustomer; }