import 'reflect-metadata';
import { RxValidator, RxAsyncValidator, UpdateOn } from '..';
export interface FormOpts {
    validators?: RxValidator | RxValidator[];
    asyncValidators?: RxAsyncValidator | RxAsyncValidator[];
    updateOn?: UpdateOn;
}
export declare function Form(opts?: FormOpts): (target: any) => void;
