import ConfigType from "./types/config.type"; declare class SnowFall { config: ConfigType; interval: ReturnType; constructor(_config: ConfigType); get cordinate(): { left: number; top: number; }; get width(): number; get icon(): string; get globalStyle(): string; injectGlobalCSS: () => void; get styles(): { svg: string; subContainer: string; }; createContainer: () => void; get container(): HTMLDivElement; remove: (id: string) => void; createSubContainer: () => HTMLElement; createSnow: () => void; snowingInterval: () => void; makeItSnow: () => void; init: () => void; clear: () => void; stopTheSnowing: () => void; } export default SnowFall; //# sourceMappingURL=index.d.ts.map