import type { FC, HTMLAttributes, Ref } from 'react'; export interface ChartActionsProps extends HTMLAttributes { ref?: Ref; /** * Keep actions visible regardless of card hover/focus. * Defaults to `false` — the block fades in on card hover/focus-within. */ alwaysVisible?: boolean; } export declare const ChartActions: FC;