import type { HostEmbeddedConfigPayload } from "./load-sidebar-v2/config"; type OpenSaaSPageInput = { origin: string; path: string; parent?: Document; insertCallback?: (iframe: HTMLIFrameElement) => void; embeddedConfig?: HostEmbeddedConfigPayload; css: { [key: string]: string | number; }; uiTheme?: string; isRTL?: boolean; sdkVersion: string; iframeElementId?: string; instanceId?: string; appId?: string; }; type OpenSaaSPageOutput = { iframe: HTMLIFrameElement; iframeUrlObject: URL; }; export declare const openSaaSPage: (props: OpenSaaSPageInput) => Promise; export {};