import { WindowConfig } from '../window/WindowConfig'; export declare class NotificationConfig extends WindowConfig { icon: string; sound: string; iconId: string; picture: string; closeDuration: number; isRemoveAfterClose: boolean; constructor(data?: T); } export declare type NotificationConfigOptions = { [P in keyof NotificationConfig]?: any; };