export interface NotifyOptions { title?: string; message?: string; variant: 'success' | 'danger' | 'warning' | 'info'; } export interface NotifyConfirmOptions extends NotifyOptions { cancelText?: string; confirmText?: string; onConfirm?: () => void; } export interface NotifyAlertOptions extends NotifyOptions { okText?: string; } export interface NotifyApi { alert(options: NotifyAlertOptions): void; confirm(options: NotifyConfirmOptions): void; toast(options: NotifyOptions): unknown; } export declare function useNotify(): NotifyApi;