import { Props as NotificationProps } from './Notification.component'; export declare const TOP_LEFT = "tl"; export declare const TOP_RIGHT = "tr"; export declare const BOTTOM_LEFT = "bl"; export declare const BOTTOM_RIGHT = "br"; type Position = typeof TOP_LEFT | typeof TOP_RIGHT | typeof BOTTOM_LEFT | typeof BOTTOM_RIGHT; type Props = { position?: Position; notifications: Array; onDismiss: (arg0: string) => void; }; declare function Notifications({ position, notifications, onDismiss, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export { Notifications }; //# sourceMappingURL=Notifications.component.d.ts.map