import React from 'react';
export interface SnowProps {
    containerRef: React.RefObject<HTMLElement>;
    color?: string;
    outlineColor?: string;
    maxFlakes?: number;
    speedFactor?: number;
}
export declare const SnowAnimation: React.FC<SnowProps>;
