import type { NitroInAppBrowserOptions, NitroInAppBrowserPresentationStyle } from "./types"; export * from "./types"; declare const NitroInAppBrowser: { open: (url: string, options?: Omit & { presentationStyle?: NitroInAppBrowserPresentationStyle; }) => Promise; close: () => Promise; }; export default NitroInAppBrowser; //# sourceMappingURL=index.d.ts.map