export namespace childSize {
    let small: string;
    let medium: string;
}
export namespace childWidthRange {
    export namespace small_1 {
        let from: number;
        let to: number;
    }
    export { small_1 as small };
    export namespace medium_1 {
        let from_1: number;
        export { from_1 as from };
        let to_1: number;
        export { to_1 as to };
    }
    export { medium_1 as medium };
}
//# sourceMappingURL=constants.d.ts.map