import React from 'react';
import { ViewProps } from 'react-native';
import { RowModel } from '../models';
export interface FormRowProps extends ViewProps {
    row: RowModel;
}
declare const FormRow: React.FC<FormRowProps>;
export default FormRow;
