/**
 * Send a synchronous message to the main process
 *
 */
export declare const tellMain: (message: string | Record<string, any>, channel?: 'asynchronous-message' | 'synchronous-message') => Promise<unknown>;
export declare const init: (prefs?: {}) => Promise<void>;
