import { PureComponent } from 'react';
import { ViewStyle } from 'react-native';
declare type RowProps = {
    style?: ViewStyle;
};
export declare class Row extends PureComponent<RowProps> {
    static defaultProps: {
        style: {};
    };
    render(): JSX.Element;
}
export {};
