import { ClickDetail as _ClickDetail, NonCancelableEventHandler } from "../internal/events"; export interface SupportPromptGroupProps { /** * Alignment of the prompts. Defaults to `vertical`. **/ alignment?: SupportPromptGroupProps.Alignment; /** * An array of objects representing support prompts. * Each item has the following properties: * - text: The text of the support prompt. * - id: The ID of the support prompt. **/ items: ReadonlyArray; /** * Called when the user clicks on a support prompt. The event detail object contains the ID of the clicked item. */ onItemClick: NonCancelableEventHandler; /** * Adds an aria label to the support prompt group. * Use this to provide a unique accessible name for each support prompt group on the page. */ ariaLabel: string; } export declare namespace SupportPromptGroupProps { type Alignment = "vertical" | "horizontal"; interface Item { text: string; id: string; } interface ItemClickDetail extends _ClickDetail { id: string; } interface Ref { /** * Focuses support prompt group item by ID. */ focus(itemId: string): void; } }