/// export declare type Type = "confetti" | "money"; export interface Props { type?: Type; onDestroy?: (...args: any[]) => any; className?: string; } declare const Celebrate: ({ className, type, onDestroy }: Props) => JSX.Element; export default Celebrate;