declare type HeightText = string; export declare const isHeightString: (someValue: any) => someValue is string; export default class Height { readonly amount: number; readonly unit = "cm"; readonly displayText: HeightText; constructor(amountInCentimeter: number); static parse(data: string): Height; } export declare const isHeight: (someValue: any) => someValue is Height; export declare const asHeight: (someValue: any) => Height; export {};