import type { ReactNode } from 'react'; import type { MessageProps } from '../Message'; export interface NotificationProps { children: NonNullable; type?: MessageProps['type']; centeredText?: MessageProps['centeredText']; onDelete?: MessageProps['onDismiss']; } /** @deprecated use Notification from kitt-universal instead */ export declare function Notification({ type, children, centeredText, onDelete }: NotificationProps): ReactNode; //# sourceMappingURL=index.d.ts.map