declare type OptionType = { id?: string; url: string; debug?: boolean; allowExternal?: boolean; text?: string; type?: 'text/javascript'; async?: boolean; }; export default function exec(options: OptionType | string, parent: HTMLElement): Promise; export {};