export declare enum StoreStatus { ACTIVE = "ACTIVE", INACTIVE = "INACTIVE", SUSPENDED = "SUSPENDED" } export type SellerDTO = { id: string; store_status: StoreStatus; created_at: Date; updated_at: Date; name: string; email: string | null; phone: string | null; description: string | null; address_line: string | null; city: string | null; state: string | null; postal_code: string | null; country_code: string | null; tax_id: string | null; handle: string; photo: string | null; members?: Partial[]; }; export type SellerWithPayoutAccountDTO = SellerDTO & { payout_account: { id: string; created_at: Date; updated_at: Date; reference_id: string; data: Record; status: string; }; }; export declare enum MemberRole { OWNER = "owner", ADMIN = "admin", MEMBER = "member" } export type MemberDTO = { id: string; created_at: Date; updated_at: Date; role: MemberRole; email: string | null; name: string | null; bio: string | null; photo: string | null; phone: string | null; seller?: Partial; }; export type MemberInviteDTO = { id: string; created_at: Date; updated_at: Date; email: string; role: MemberRole; seller?: Partial; token: string; expires_at: Date; accepted: boolean; }; //# sourceMappingURL=common.d.ts.map