///
import { type SvgIconProps } from '@mui/material';
import { type WithoutEmotionSpecific } from '../types';
export type ChevronProps = {
isActive?: boolean;
className?: string;
} & Omit, 'children' | 'classes' | 'ref'>;
export declare const Chevron: (props: ChevronProps) => JSX.Element;