export interface DomProps { /** * The element's unique identifier. * @ignore */ id?: string; } export interface AriaLabelingProps { /** * Defines a string value that labels the current element. * @ignore */ "aria-label"?: string; /** * Identifies the element (or elements) that labels the current element. * @ignore */ "aria-labelledby"?: string; /** * Identifies the element (or elements) that describes the object. * @ignore */ "aria-describedby"?: string; /** * Identifies the element (or elements) that provide a detailed, extended description for the object. * @ignore */ "aria-details"?: string; } export interface InteractionStatesProps { /** * @ignore */ active?: boolean; /** * @ignore */ focus?: boolean; /** * @ignore */ hover?: boolean; }