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