import { LengthType, LengthTypeBindingOptions, LengthValidPrimitive } from '../types/type-bindings';
import BaseTypedBinding from './base-typed-binding';
export declare class LengthTypedBinding extends BaseTypedBinding {
    type: LengthType;
    value: LengthValidPrimitive;
    options?: LengthTypeBindingOptions | undefined;
    constructor(type: LengthType, value: LengthValidPrimitive, options?: LengthTypeBindingOptions | undefined);
}
export default LengthTypedBinding;
