import { AdditionalFieldProps } from '../../lib/auth/core/auth-plugin.js'; export type { AdditionalFieldProps } from '../../lib/auth/core/auth-plugin.js'; /** Renders a single additional user field via HeroUI v3 components. * * @param name - The name of the field * @param field - The field to render * @param isPending - Whether the field is pending * @param optionalLabel - The optional label to render * @param variant - The variant to render * @returns The rendered field * * */ export declare function AdditionalField({ name, field: configuredField, isPending, optionalLabel, variant, }: AdditionalFieldProps): import("react").JSX.Element;