import { type HTMLStyleProps, type StateProp } from '@innet/dom'; export type ArrowDirection = 'down' | 'top' | 'left' | 'right'; export interface ArrowProps extends HTMLStyleProps { direction?: StateProp; color?: StateProp; size?: StateProp; } export declare function Arrow({ direction, style, color, size, ...props }?: ArrowProps): any;