import React from "react"; export interface HintTextProps { /** Child elements */ children?: React.ReactNode; /** Sets the id for the component */ id?: string; size: "small" | "medium" | "large"; /** If true, the hint text will display in disabled styling */ disabled?: boolean; /** Class name to target component */ className?: string; } export declare const HintText: ({ children, id, size, disabled, className, }: HintTextProps) => React.JSX.Element; export default HintText;