import React from 'react'; import { DefaultProps, FlowindColor, FlowindSize, Selectors } from '../../../styles'; import type { SpotlightAction } from '../types'; import useStyles from './default-action.styles'; export type DefaultActionStylesNames = Selectors; export interface DefaultActionProps extends DefaultProps, React.ComponentPropsWithoutRef<'button'> { action: SpotlightAction; hovered: boolean; onTrigger: () => void; highlightQuery: boolean; highlightColor: FlowindColor; query: string; radius: FlowindSize; } export declare function DefaultAction({ action, styles, classNames, hovered, onTrigger, highlightQuery, highlightColor, query, radius, ...others }: DefaultActionProps): React.JSX.Element; export declare namespace DefaultAction { var displayName: string; }