import { BaseEntity } from '../database/base.entity';
import { CurrencyEntity } from './currency.entity';
export declare class TenantSettingsEntity extends BaseEntity {
    company_name: string | null;
    default_currency: CurrencyEntity;
    default_currency_id: string | null;
    timezone: string | null;
    fiscal_year_start: string | null;
    website_url: string | null;
    logo_url: string | null;
    primary_color: string;
    secondary_color: string;
    address: string | null;
    phone: string | null;
    email: string | null;
    tax_number: string | null;
    gst_number: string | null;
    pan_number: string | null;
    bank_name: string | null;
    account_number: string | null;
    ifsc_code: string | null;
    distribution_mode: string;
    terms_and_conditions: string | null;
}
