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 {};
