import { type CSSProperties, type ReactNode } from 'react';
declare const Button: ({ children, isLoading, isDisabled, onClick, className, style, }: {
    children: ReactNode;
    isLoading?: boolean;
    isDisabled?: boolean;
    onClick?: () => void;
    className?: string;
    style?: CSSProperties | undefined;
}) => import("react/jsx-runtime").JSX.Element;
export default Button;
