export type NotificationKind = 'info' | 'success' | 'error' | 'warning'; export declare const NotificationPosition: { readonly TOP_RIGHT: "top-right"; readonly TOP_CENTER: "top-center"; readonly BOTTOM_RIGHT: "bottom-right"; readonly BOTTOM_CENTER: "bottom-center"; readonly CENTER: "center"; }; export type NotificationPositionType = (typeof NotificationPosition)[keyof typeof NotificationPosition];