import * as react_jsx_runtime from 'react/jsx-runtime';
import { SolidButtonProps } from './Button.js';
import 'react';

type LoadingButtonProps = {
    isLoading?: boolean;
} & SolidButtonProps;
declare const LoadingButton: ({ isLoading, size, onClick, ...rest }: LoadingButtonProps) => react_jsx_runtime.JSX.Element;

export { LoadingButton };
