import * as React from 'react'; /** * FormDescription component props */ export type FormDescriptionProps = React.HTMLAttributes; /** * FormDescription component - Displays helper text for form fields * * Provides additional context or instructions for form inputs. * Accessible via aria-describedby on the form control. * * @example * ```tsx * ( * * Password * * * * * Must be at least 8 characters with 1 uppercase letter and 1 number * * * * )} * /> * ``` */ export declare function FormDescription({ ref, className, ...props }: FormDescriptionProps & { ref?: React.Ref; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=FormDescription.d.ts.map