import { Component } from 'react'; import { ViewStyle } from 'react-native'; declare type LabelAlign = 'left' | 'right'; export interface FormProps { model: T; form?: any; labelAlign?: LabelAlign; labelWidth?: number; style?: ViewStyle; wrappedComponentRef?: any; } declare class Form extends Component> { constructor(props: FormProps); componentDidMount(): void; isValid(): boolean; setFieldValues(): void; validate(fieldNames: any, options?: any, callback?: any): void; render(): JSX.Element; } declare const _default: typeof Form; export default _default;