@5minds/processcube_app_sdk
Version:
The SDK for ProcessCube Apps
9 lines (8 loc) • 318 B
TypeScript
import { PropsWithChildren } from 'react';
type FlowNodeButtonProps = {
title?: string;
className?: string;
onClick?: () => void;
};
export declare function FlowNodeButton({ title, children, className, onClick }: PropsWithChildren<FlowNodeButtonProps>): import("react/jsx-runtime").JSX.Element;
export {};