import { SystemNotificationOptions } from '../types'; import { Icon } from 'itlab-icons'; export declare function useSystemNotification(): { send: (content: SystemNotificationOptions | string, options?: { color?: string; icon?: Icon; immediate?: boolean; duration?: number; }) => void; error: (content: SystemNotificationOptions | string) => void; success: (content: SystemNotificationOptions | string) => void; info: (content: SystemNotificationOptions | string) => void; submitted: (content: SystemNotificationOptions | string) => void; copied: (content: SystemNotificationOptions | string) => void; deleted: (content: SystemNotificationOptions | string) => void; };