import { User } from '../../users/entities/user.entity';
import { Campaign } from '../../campaigns/entities/campaign.entity';
import { Transaction } from '../../transactions/entities/transaction.entity';
export declare enum OrganizationPlan {
    FREE = "free",
    BASIC = "basic",
    PRO = "pro",
    ENTERPRISE = "enterprise"
}
export declare class Organization {
    id: string;
    name: string;
    slug: string;
    email: string;
    phone: string;
    logo_url: string;
    plan: OrganizationPlan;
    plan_expires_at: Date;
    payment_code: string;
    payment_api_key: string;
    is_active: boolean;
    created_at: Date;
    updated_at: Date;
    users: User[];
    campaigns: Campaign[];
    transactions: Transaction[];
}
