interface NotificationSetupOptions {
    serverUrl?: string;
    file?: string;
    force?: boolean;
    install?: boolean;
    sync?: boolean;
}
declare function renderNotificationHelper(appId: string, serverUrl: string): string;
export declare function setupNotifications(appIdArg: string | undefined, options: NotificationSetupOptions): Promise<void>;
export { renderNotificationHelper };
