import { App } from '../app'; import { Event } from './Event'; declare type BIZ_IPC_EVENT_TYPE = 'export-monthly-bills' | 'start-download-inquiry-order' | 'query-download-inquiry-order' | 'add-bp-endpoint' | 'remove-bp-endpoint' | 'add-auto-print-task' | 'query-auto-print-tasks' | 'start-erp-sales-order-fill' | 'start-erp-sales-order-fill-dev' | 'get-erp-customers' | 'reload-erp-customers'; export declare type IPC_EVENT_TYPE = BIZ_IPC_EVENT_TYPE | 'restart-app' | 'open-item' | 'mkdir' | 'select-dirs' | 'select-files' | 'list-dir' | 'get-tmp-dir' | 'get-local-ips' | 'go-local-page' | 'go-cloud-page' | 'go-crm' | 'go-erp' | 'fs-extra' | 'read-file' | 'read-usp-header' | 'write-file' | 'upload-file' | 'download-file' | 'start-multiple-files-download' | 'query-multiple-files-download' | 'copy-file' | 'stats-file' | 'send-notification' | 'say-text' | 'open-external' | 'export-pdf' | 'set-gateway-credentials' | 'get-package-info' | 'get-client-config' | 'set-client-config' | 'reset-client-config' | 'get-client-store' | 'get-network-interfaces' | 'clear-cache' | 'install-service' | 'start-service' | 'stop-service' | 'start-daemon-server' | 'stop-daemon-server' | 'start-vnc-server' | 'stop-vnc-server' | 'get-supported-uvc-controls' | 'capture-uvc-camera' | 'clear-uvc-camera-cache' | 'start-rtmp-push' | 'stop-rtmp-push' | 'restart-rtmp-push' | 'get-device-config' | 'set-device-config' | 'reset-device-config' | 'get-device-store' | 'get-collector-config' | 'set-collector-config' | 'get-collector-store' | 'restart-collector-manager' | 'search-app-location' | 'run-app' | 'dump-head'; export declare class IpcEvent extends Event { type: IPC_EVENT_TYPE; app: App; constructor(data?: Partial>); } export {};