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