import React from 'react'; import { IconProps, Status } from '../../types'; export declare const noticeIcons: { [x: number]: { icon: import("@pingux/mdi-react").MdiReactIconComponentType; testid: string; name: string; }; }; interface NoticeIconProps extends Omit { status?: Status; } export declare const NoticeIcon: React.FC; export {};