interface InternalEmbedVolcRuntime {
    getVolcIframeUrlSimple(options: {
        volcURL: string;
        volcAccountId: string;
    }): Promise<string>;
}
declare global {
    interface Window {
        __DATAFINDER_INTERNAL_EMBED_VOLC__?: InternalEmbedVolcRuntime;
    }
}
export declare function getInternalEmbedVolcIframeUrl(options: {
    volcURL: string;
    volcAccountId: string;
}): Promise<string>;
export {};
