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