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; duration?: number; lineWidth?: number | string; outset?: number | string; size?: number | string; } declare const BorderBeam: React.FC>; export default BorderBeam;