import { XMLElement } from '../../common/soap/xmlElement';
import { ProposalCompanyAssociationType } from './proposalCompanyAssociationType';
export declare class ProposalCompanyAssociation extends XMLElement {
    protected static XSI_TYPE: string;
    companyId: number;
    type: ProposalCompanyAssociationType;
    contactIds: number[];
    constructor(companyId?: number, type?: ProposalCompanyAssociationType, contactIds?: number[]);
}
