import type { NotificationComponentProps } from './Notification'; import type { MessageOptions } from '../message'; import type { NotificationKind } from './types.old'; export interface OldNotificationComponentProps extends Omit { /** @deprecated status를 대신 사용해주세요. */ kind?: NotificationKind; /** @deprecated closable을 대신 사용해주세요. */ closeButton?: boolean; } export declare function convertOldNotificationProps(props: OldNotificationComponentProps): NotificationComponentProps; export declare function convertOldNotificationOptions(props: MessageOptions): MessageOptions;