import { XMLElement } from '../../common/soap/xmlElement';
import { ProposalLineItem } from './proposalLineItem';
export declare class ProposalLineItemPage extends XMLElement {
    protected static XSI_TYPE: string;
    results: ProposalLineItem[];
    startIndex: number;
    totalResultSetSize: number;
    constructor(results?: ProposalLineItem[], startIndex?: number, totalResultSetSize?: number);
}
