export type AnimationType = "fade" | "slide"; export type DismissButtonStyle = "cancel" | "close" | "done"; export type Options = { animationType?: AnimationType; dismissButtonStyle?: DismissButtonStyle; barTintColor?: string; controlTintColor?: string; }; export declare const openBrowser: (url: string, options?: Options) => Promise; export declare const closeBrowser: () => void; //# sourceMappingURL=index.d.ts.map