import { CaNotificationProps } from "../admin-panel/notifications/CaNotification"; export declare type NotifyArgs = { intent?: CaNotificationProps["intent"]; title?: CaNotificationProps["title"]; description: CaNotificationProps["description"]; }; export declare function notify({ intent, title, description }: NotifyArgs): void;