import { Country, Currency } from '../../enums';
import { AddressDTO } from '../common';
import { MerchantRailsDTO, MerchantStatusLogDTO } from './';
export declare class MerchantDTO {
    id: string;
    organization_id: string;
    country: Country;
    city: string;
    state: string;
    name: string;
    billing_address: AddressDTO;
    location_address: AddressDTO;
    email: string;
    external_id: string;
    alias: string;
    phone?: string;
    status: string;
    activity?: string;
    parent_id?: string;
    rails?: MerchantRailsDTO;
    created_at: Date;
    updated_at: Date;
    supported_currencies: Currency[];
    default_currency: Currency;
    tax_id?: string;
    custom_data: Record<string, unknown>;
    status_logs: MerchantStatusLogDTO[];
}
