import React from 'react';
import { type BoxProps } from '../Box/Box';
export declare const CaretDownIcon: () => React.JSX.Element;
interface AnimatedCaretDownIconProps {
    expanded?: boolean;
    color?: BoxProps['color'];
    /**
     * Drop the 16×16 outer wrapper and render the chevron in a tight 8×8 box.
     * Use when the parent already provides the hit area / spacing.
     */
    compact?: boolean;
}
export declare const AnimatedCaretDownIcon: ({ expanded, color, compact, }: AnimatedCaretDownIconProps) => React.JSX.Element;
export {};
