import React from 'react';
import type { BorderBeamColor } from './util';
export type { BorderBeamColor, BorderBeamGradient } from './util';
export interface BorderBeamProps {
    prefixCls?: string;
    className?: string;
    style?: React.CSSProperties;
    children?: React.ReactNode;
    color?: BorderBeamColor;
    outset?: number | string;
}
declare const BorderBeam: React.FC<React.PropsWithChildren<BorderBeamProps>>;
export default BorderBeam;
