import { MouseEvent } from 'react'; import { ComponentControls, SetControlValueFn } from '@component-controls/core'; export interface UseControlsActionsProps { controls?: ComponentControls; storyId?: string; setControlValue?: SetControlValueFn; } export declare const useControlsActions: (props: UseControlsActionsProps) => { node: string; onClick: (e: MouseEvent) => void; group: string; id: string; 'aria-label': string; }[];