import { CommonTradingAs } from '../common/CommonTradingAs.js';
import { ContactType } from './ContactType.js';
import './Address.js';
import '../common/CommonPostAddress.js';

declare class Contact extends CommonTradingAs {
    generatedNumber?: string | null;
    farePaid: number;
    contactType: ContactType;
    forename: string | null;
    dateOfBirth?: string | null;
    contactOnNotice?: string | null;
    conComment?: string | null;
    occupation?: string | null;
    phoneNumber?: string | null;
    lastUpdate: string;
    surname: string | null;
}

export { Contact };
