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