declare const apis: { navigator: { closeDapp: () => void; goBack: () => void; toggleNavbar: () => void; routeTo: ({ screen, props }: { screen: string; props: import("./navigator").ScreenProps; }) => void; getOrientation: () => Promise; setOrientation: (orientation: import("./navigator").Orientation) => void; setTitle: (title: string) => void; }; native: { alert: (content: string) => void; confirm: (params: import("./native").ConfirmParams) => Promise; setLoading: (visible: boolean) => void; share: (params: import("./native").ShareParams) => Promise; scanQRCode: () => Promise; setClipboard: (text: string) => void; }; user: { showAccountSwitch: (chainType?: "ETHEREUM" | "BITCOIN" | "LITECOIN" | "EOS" | "COSMOS" | "TRON" | "BITCOINCASH" | "NERVOS" | "KUSAMA" | "POLKADOT" | "FILECOIN" | null) => Promise; }; device: { getCurrentLanguage: () => Promise; getCurrentCurrency: () => Promise; }; internal: { getHeaders: () => Promise; setLogo: (logo: string) => void; log: (...data: any[]) => void; emitEvent: >(eventName: string, params?: T | undefined) => Promise; dangerouslyAPI: (...args: unknown[]) => T_1; dangerouslyPromisifyAPI: (...args: unknown[]) => Promise; }; layout: { setOptions: (options: import("./layout").WebViewLayoutOptions) => void; }; }; export default apis;