import { default as React } from 'react'; interface FieldProps { source: string; children: React.ReactNode; } declare function Field({ source, children }: FieldProps): JSX.Element | null; export { Field }; //# sourceMappingURL=Field.d.ts.map