import React from 'react';
import { AppLayoutProps } from './interfaces';
interface NotificationsProps {
    children?: React.ReactNode;
    labels: AppLayoutProps.Labels | undefined;
    topOffset: number | undefined;
}
export declare const Notifications: React.ForwardRefExoticComponent<NotificationsProps & {
    sticky: boolean | undefined;
} & React.RefAttributes<HTMLElement>>;
export {};
