import React from 'react';

declare const GlowCapture: ({ className, size, ...rest }: {
    [x: string]: any;
    className?: string | undefined;
    size?: number | undefined;
}) => React.JSX.Element;
declare const Glow: ({ className, style, color, debug, ...rest }: {
    [x: string]: any;
    className?: string | undefined;
    style?: {} | undefined;
    color?: string | undefined;
    debug?: boolean | undefined;
}) => React.JSX.Element;

export { Glow, GlowCapture };
