UNPKG

@atlaskit/spotlight

Version:

A spotlight introduces users to points of interest, from focused messages to multi-step tours.

24 lines (23 loc) 727 B
/** * @jsxRuntime classic * @jsx jsx */ import { type ReactNode } from 'react'; export interface SpotlightControlsProps { /** * A `testId` prop is provided for specified elements, which is a unique * string that appears as a data attribute `data-testid` in the rendered code, * serving as a hook for automated tests */ testId?: string; /** * Elements to be rendered inside the `SpotlightFooter`. */ children?: ReactNode; } /** * __Spotlight controls__ * * `SpotlightControls` groups spotlight control components. */ export declare const SpotlightControls: React.ForwardRefExoticComponent<React.PropsWithoutRef<SpotlightControlsProps> & React.RefAttributes<HTMLDivElement>>;