export type MultiActionWidgetProps = Readonly<{ /** * The title of the widget */ title: string; /** * Children of the widget (ActionWidgetItems) */ children: React.ReactNode; /** * Optional container className */ className?: string; /** * Callback when the close button is clicked */ onClose?: () => void; }> & React.RefAttributes; export declare function MultiActionWidget({ title, children, className, onClose, ref, ...props }: MultiActionWidgetProps): import("react").JSX.Element; export declare namespace MultiActionWidget { var displayName: string; } //# sourceMappingURL=MultiActionWidget.d.ts.map