import type { Keys } from '@rocket.chat/icons'; import type { AllHTMLAttributes } from 'react'; export type FramedIconProps = { info?: boolean; success?: boolean; warning?: boolean; danger?: boolean; neutral?: boolean; icon: Keys; } & Omit, 'is'>; declare const FramedIcon: ({ info, success, warning, danger, neutral, icon, ...props }: FramedIconProps) => import("react/jsx-runtime").JSX.Element; export default FramedIcon; //# sourceMappingURL=FramedIcon.d.ts.map