/** * Splits inches into feet and height components. * @param heightInInches integer value representing inches. * @returns An array of two integers: feet and inches. */ export declare function toFeetAndInches(heightInInches: number): [number, number];