export declare type Props = { unread: boolean; count: number; }; /** * Overlays unreads in current SVG */ export declare function Unreads({ unread, count }: Props): JSX.Element | null;