import { h } from 'preact'; import { DXCOption } from '../types/DXCUserInteraction'; export interface OptionButtonProps { option: DXCOption; onClick: () => void; } /** * Generic button component for selectable options. * Displays the option's icon and display name. * * Style is determined by the styleHint property for branding purposes. */ export declare function OptionButton({ option, onClick }: OptionButtonProps): h.JSX.Element; /** * Visual divider with "or" text. */ export declare function Divider(): h.JSX.Element;