import React from 'react';
declare global {
    interface Window {
        particlesJS: any;
    }
}
interface ParticlesBackgroundProps {
    colors?: string[];
    size?: number;
    countDesktop?: number;
    countTablet?: number;
    countMobile?: number;
    zIndex?: number;
    height?: string;
}
export declare const ParticlesBackground: React.FC<ParticlesBackgroundProps>;
export default ParticlesBackground;
