export interface NotificationProps {
    id: number;
    avatar: {
        src?: string;
        fallback: string;
        status?: 'online' | 'offline' | 'busy' | 'away';
    };
    userName: string;
    projectName: string;
    time: string;
    type: 'success' | 'error' | 'warning' | 'info';
    message: string;
}
export interface NotificationDropdownProps {
    notifications: NotificationProps[];
    onViewAll?: () => void;
}
export declare function NotificationDropdown({ notifications, onViewAll }: NotificationDropdownProps): import("react/jsx-runtime").JSX.Element;
