declare type IconProps = {
    name: 'chevron-right' | 'chevron-left' | 'chevron-up' | 'chevron-down' | 'magnifying-glass' | 'dash';
    className?: string;
};
declare const Icon: (props: IconProps) => any;
export default Icon;
