import React from 'react';
import { type ConfettiProps } from './Confetti';
export interface ConfettisProps extends Pick<ConfettiProps, 'size' | 'duration'> {
    autoHide?: boolean;
    theme?: string[];
    /**
     * Number of confettis to render
     * @default 30
     */
    numberOfConfettis?: number;
}
export declare const Confettis: React.MemoExoticComponent<({ theme, numberOfConfettis, duration, }: ConfettisProps) => React.JSX.Element | null>;
