/// <reference types="react" />
import "./field.scss";
export interface Props {
    name: string;
    validation?: string;
    comment: string;
    children?: any;
    className?: string;
    noLabel?: boolean;
}
export declare const Field: (p: Props) => JSX.Element;
export default Field;
