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;
