/**
 * CSS unit value.
 */
export default class CSSUnitValue {
    unit: string;
    value: number;
    /**
     * Constructor.
     *
     * @param value Value.
     * @param unit Unit.
     */
    constructor(value: number, unit: string);
}
//# sourceMappingURL=CSSUnitValue.d.ts.map