import type { Keys as IconName } from '@rocket.chat/icons'; import { type BoxProps } from '../Box'; export type IconProps = Omit & { name: IconName; size?: BoxProps['width']; }; declare const Icon: import("react").ForwardRefExoticComponent & { name: IconName; size?: BoxProps["width"]; } & import("react").RefAttributes>; export default Icon; //# sourceMappingURL=Icon.d.ts.map