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; } export declare const HintText: ({ children, id, size, disabled }: HintTextProps) => React.JSX.Element; export default HintText;