import { FC } from 'react';
import { ArrowTheme } from './ArrowTheme';
export interface ArrowProps {
    /**
     * CSS Classname to apply to the arrow
     */
    className?: string;
    /**
     * The direction of the arrow
     * @default 'down'
     */
    direction?: 'up' | 'right' | 'down' | 'left';
    /**
     * Theme for the Arrow.
     */
    theme?: ArrowTheme;
}
export declare const Arrow: FC<ArrowProps>;
