import * as React from "react"; interface RenderProps { describedByIds: string; getValidationErrors: React.ReactNode; getHintContent: React.ReactNode; isValid: boolean; } interface FormFieldWrapperProps { children: (renderProps: RenderProps) => React.ReactNode; errors?: React.ReactNode[]; hintContent?: React.ReactNode; id?: string; } declare const _default: ({ children, errors, hintContent, id }: FormFieldWrapperProps) => JSX.Element; export default _default;