import { FunctionComponent, PropsWithChildren, ReactNode } from 'react'; import { FieldProps } from '../models/typings'; interface FieldWrapperProps extends FieldProps { type: string; title?: ReactNode; description?: string; defaultValue?: string; errors?: string[]; isRow?: boolean; isRaw?: boolean; } export declare const FieldWrapper: FunctionComponent>; export {}; //# sourceMappingURL=FieldWrapper.d.ts.map