import { EdgeProps } from '@zag-js/marquee'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface MarqueeEdgeBaseProps extends EdgeProps, PolymorphicProps { } export interface MarqueeEdgeProps extends HTMLProps<'div'>, MarqueeEdgeBaseProps { } export declare const MarqueeEdge: ForwardRefExoticComponent>;