export declare function jsDeliverUrl(url?: string, module?: string, version?: string, entry?: string): string; /** Validate dependencies by checking if they exist on window. * * This is a vanilla implementation of dependency validation * as a starting point. * */ export declare const checkDependencies: (dependencies?: string[]) => boolean; export declare const hasScript: (scriptUrl: string, scriptId: string) => boolean; export declare const attachScript: (scriptUrl: string, scriptId: string, async: boolean, onLoad: () => void, onError: (error: any) => void) => void;