import type { OrganizationAddOptions } from '../schemas/organization';
export declare function addOrganizationInternal(options: OrganizationAddOptions, silent?: boolean): Promise<{
    created_at: string | null;
    created_by: string;
    customer_id: string | null;
    email_preferences: import("../types/supabase.types").Json;
    enforce_hashed_api_keys: boolean;
    enforcing_2fa: boolean;
    id: string;
    last_stats_updated_at: string | null;
    logo: string | null;
    management_email: string;
    max_apikey_expiration_days: number | null;
    name: string;
    password_policy_config: import("../types/supabase.types").Json | null;
    require_apikey_expiration: boolean;
    stats_updated_at: string | null;
    updated_at: string | null;
}>;
export declare function addOrganization(options: OrganizationAddOptions): Promise<void>;
