import React from 'react';
import { PropsWithChildren } from 'react';
import { Label } from './Label';
import { Input } from './Input';
import { Textarea } from './Textarea';
export interface FieldComposition {
    Label: typeof Label;
    Input: typeof Input;
    Textarea: typeof Textarea;
}
export declare const Field: React.FC<PropsWithChildren> & FieldComposition;
