import React from 'react';
import type { PropsWithChildren } from 'react';
export declare const UnreadCountBadge: ({ children, count, position, }: PropsWithChildren<{
    count: number;
    position?: 'top-right' | 'bottom-right' | 'bottom-left' | 'top-left';
}>) => React.JSX.Element;
