import React from 'react';
import { StyledRow } from './StyledUI';
declare type RowProps = React.ComponentProps<typeof StyledRow> & {
    input?: boolean;
};
export declare function Row({ input, ...props }: RowProps): React.JSX.Element;
export {};
