import { MessageContainerKey, MessageOptions } from '../message'; import { NotificationComponentProps } from './Notification'; interface NotificationType { show: (props: MessageOptions) => void; destroy: (id: string, key?: MessageContainerKey) => void; } export declare function useNotification(): NotificationType; export {};