import { IdentityDto } from './identity.dto'; import { AccountType } from '@nx-ws/bhn-enums/account/type.enum'; import { CategoryType } from '@nx-ws/bhn-enums/account/category.enum'; export declare class PartyDto { identity: IdentityDto; role: AccountType; account: string; covered: boolean; category: CategoryType; biller: string; isBhnParty: boolean; constructor(d?: PartyDto); }