import { AutomationsDelegate } from "./AutomationsDelegate";
import { AutomationsApi } from './AutomationsApi';
import { ScreenPresentationConfig } from './ScreenPresentationConfig';
export default class AutomationsInternal implements AutomationsApi {
    private automationsDelegate;
    setDelegate(delegate: AutomationsDelegate): void;
    showScreen(screenId: string): Promise<void>;
    setScreenPresentationConfig(config: ScreenPresentationConfig, screenId?: string): void;
    private onNativeEvent;
}
