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