export type RowConstructorProps = { height: number; title: string; }; export declare class Row { height: number; title: string; constructor(props: RowConstructorProps); }