/**
 * Supported arrow directions.
 *
 * @private internal typing helper for `<ArrowIcon/>`
 */
type ArrowDirection = 'DOWN' | 'UP';
/**
 * Props for rendering a directional arrow icon.
 *
 * @private internal props typing for `<ArrowIcon/>`
 */
type ArrowIconProps = {
    direction: ArrowDirection;
    size: number;
};
/**
 * Shows simple arrow icon pointing up or down
 *
 * @public exported from `@promptbook/components`
 */
export declare const ArrowIcon: ({ direction, size }: ArrowIconProps) => import("react/jsx-runtime").JSX.Element;
export {};
