import * as maa from './maa'; import { CustomActionCallback, CustomRecognizerCallback } from './types'; export declare const Pi: { __running: boolean; notify(message: string, details_json: string): maa.MaybePromise; register_custom_recognizer(id: maa.Id, name: string, func: CustomRecognizerCallback): void; register_custom_action(id: maa.Id, name: string, func: CustomActionCallback): void; run_cli(id: maa.Id, resource_path: string, user_path: string, directly: boolean): Promise; };