import React, { CSSProperties, PropsWithChildren } from "react";
export interface ElectroBorderProps extends PropsWithChildren {
    /** Border color */
    borderColor?: string;
    /** Border thickness in px */
    borderWidth?: number;
    /** Animation distortion intensity */
    distortion?: number;
    /** Animation speed multiplier */
    animationSpeed?: number;
    /** Border radius */
    radius?: string | number;
    /** 🔘 Enable glow effect (default true) */
    glow?: boolean;
    /** 🔘 Enable aura background (default true) */
    aura?: boolean;
    /** 🔘 Enable all effects (turn off to show only electric border) */
    effects?: boolean;
    /** Glow blur intensity */
    glowBlur?: number;
    className?: string;
    style?: CSSProperties;
}
export declare const ElectroBorder: React.FC<ElectroBorderProps>;
export default ElectroBorder;
