import { XMLElement } from '../../common/soap/xmlElement';
import { UnitType } from './unitType';
export declare class AlternativeUnitTypeForecast extends XMLElement {
    protected static XSI_TYPE: string;
    unitType: UnitType;
    matchedUnits: number;
    availableUnits: number;
    possibleUnits: number;
    constructor(unitType?: UnitType, matchedUnits?: number, availableUnits?: number, possibleUnits?: number);
}
