import type { ComplexAction } from '../../types/button'; import type { ButtonProps } from './Button'; export declare function buttonFrom({ content, onAction, ...action }: ComplexAction, overrides?: Partial, key?: any): import("react/jsx-runtime").JSX.Element; export declare function buttonsFrom(actions: ComplexAction[] | ComplexAction, overrides?: Partial): import("react/jsx-runtime").JSX.Element | import("react/jsx-runtime").JSX.Element[];