import React from 'react'; import { BoxDivProps } from '../silke-box'; import { SilkeButtonProps } from '../silke-button'; import { SilkeIcons } from '../silke-icon'; export type ActionBoxKind = 'inline' | 'stacked' | 'centered'; export type SilkeActionBoxProps = { kind: ActionBoxKind; title?: string; children?: React.ReactNode; icon?: SilkeIcons; link?: { label: string; href: string; external?: boolean; }; buttons?: SilkeButtonProps[]; } & Omit; export declare function SilkeActionBox({ className, title, children, kind, icon, link, buttons, ...rest }: SilkeActionBoxProps): import("react/jsx-runtime").JSX.Element;