import { Relation } from 'typeorm';
import { OrganisationEntity } from './organisation.entity';
import { SDKListOptionsEntity } from '@serene-dev/la-nest-library';
import { TransactionEntity } from '../modules/product/transaction.entity';
import { ClientWebhookConfigEntity } from './client-webhook.entity';
export declare class ClientEntity extends OrganisationEntity {
    address: string;
    purpose: string;
    contactPerson: string;
    phoneNumber: string;
    typeOfBusiness: string;
    sandbox: boolean;
    testMode: boolean;
    ipAllowlist?: string[];
    webhookEnabled?: boolean;
    typeOfBusinessEntity: SDKListOptionsEntity;
    transactions: Relation<TransactionEntity>[];
    webhookConfigs: Relation<ClientWebhookConfigEntity>[];
}
