import { type ElementType, type Ref } from 'react'; import { type ButtonBaseProps } from '../ButtonBase/ButtonBase'; type Props = ButtonBaseProps & { ref?: Ref; }; export declare const ProgressButton: ({ children, className, onClick, ...props }: Props) => import("react/jsx-runtime").JSX.Element; export {};