import { PositionTop, PositionBottom, PositionRight, PositionLeft, SizeExtraSmall, SizeSmall, SizeMedium } from '../common'; export interface ChevronProps { orientation?: PositionTop | PositionBottom | PositionLeft | PositionRight; size?: SizeExtraSmall | SizeSmall | SizeMedium; disabled?: boolean; className?: string; } export interface ExtraSmallChevronProps { className?: string; } declare const Chevron: ({ orientation, size, disabled, className, }: ChevronProps) => import("react").JSX.Element; export default Chevron; //# sourceMappingURL=Chevron.d.ts.map