import type { Icon } from 'tabler-icons-react'; import { ButtonVariant } from '../Button'; export interface Action { label: string; icon: Icon; href?: string; side: 'left' | 'right'; target?: '_self' | '_blank' | '_parent' | '_top'; hide?: boolean; action?: (value?: any) => void; variant?: ButtonVariant; } export interface ActionsProps { actions: Action[]; } export declare function Actions(props: ActionsProps): import("react/jsx-runtime").JSX.Element;