import { ComponentChildren } from '../../shared/children'; export interface AbbreviationProps { /** * The content of the abbreviation or acronym. */ children?: ComponentChildren; /** * Provides an expansion for the abbreviation or acronym when a full expansion is not present in the interface. * * This provides a hint to user agents on how to announce/display the content while informing all users what the abbreviation means. * * @default '' * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr */ title?: string; }