interface Props { widgetUrl: string; widgetType: string; props?: Record; } export declare function createIframeContainer({ widgetUrl, widgetType, props }: Props): { iframeContainer: HTMLDivElement; iframe: HTMLIFrameElement; }; export declare function toggleIframeSize(): void; export {};