UNPKG

@5minds/processcube_app_sdk

Version:
8 lines (7 loc) 309 B
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;