export type PushcutView = 'notifications' | 'triggers' | 'widgets' | 'server' | 'account' | 'runServer' | 'monitorServer' | 'notificationsLog'; export interface OpenViewPayload { /** * Pushcut view name documented by the official URL scheme page. */ view: PushcutView; } export declare function pushcutOpenUrl(view?: PushcutView): string;