import { Address } from './Address';
/** Contact definition of a claim notice holder */
export interface Contact {
    /** Address of holder */
    address: Address;
    /** Email address */
    email?: string;
    /** Legitimacy of holder */
    entitlement?: string;
    /** Name of claim notice holder */
    name?: string;
    /** Organisation name */
    organisation?: string;
    /** Type of contact */
    type?: string;
}
//# sourceMappingURL=Contact.d.ts.map