import * as React from "react";
import { IRowComponentProps } from "./Row.interfaces";
declare class Row extends React.Component<IRowComponentProps, any> {
    static contextType: React.Context<import("../../../Context/interfaces").IContextObject>;
    constructor(props: IRowComponentProps);
    private SetViewport;
    componentDidMount(): void;
    GetComponent: (element: any) => JSX.Element;
    render(): JSX.Element;
}
export declare const RowComponentTestId = "RowComponentTestId";
export default Row;
