import { FC, ReactNode } from 'react'; export interface FieldProps { label: ReactNode; } export declare const Field: FC;