import React, { PropsWithChildren } from 'react'; /** * @description * A wrapper around form fields which provides a label, tooltip and error message. * * @example * ```ts * import { FormField } from '@vendure/admin-ui/react'; * * export function MyReactComponent() { * return ( * * * * ); * } * ``` * * @docsCategory react-components */ export declare function FormField(props: PropsWithChildren<{ for?: string; label?: string; tooltip?: string; invalid?: boolean; errorMessage?: string; }>): React.JSX.Element;