import type { JSX, RefObject } from 'react'; export { Add } from './Add'; export { Arrow } from './Arrow'; export { Bell } from './Bell'; export { Calendar } from './Calendar'; export { Check } from './Check'; export { ChevronDown } from './ChevronDown'; export { Close } from './Close'; export { Cross } from './Cross'; export { Edit } from './Edit'; export { Info } from './Info'; export { KalendarSecondary } from './KalendarSecondary'; export { LogoO2 } from './LogoO2'; export { LogOut } from './LogOut'; export { Plus } from './Plus'; export { Power } from './Power'; export { Search } from './Search'; export { Loader } from './Loader'; export { Upload } from './Upload'; export { Folder } from './Folder'; export { Download } from './Download'; export { Megaphone } from './Megaphone'; type IconProps = { className?: string; height?: number | string; [key: `color${number}`]: string | undefined; ref?: RefObject; testId?: string; width?: number | string; }; export type IconType = (props: IconProps) => JSX.Element;