import { type TypographyProperties } from '../typography'; export type InputMessageProperties = TypographyProperties; /** * Message shown beneath input components to provide context or guidance. * @docs {@link https://design.visa.com/components/input/?code_library=react | See Docs} */ declare const InputMessage: { ({ className, tag, ...remainingProps }: InputMessageProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default InputMessage;