/**
 * @module dom
 */
/**
 * interface of options of insertScript.
 */
export interface InsertScriptOptions {
    async?: boolean;
    defer?: boolean;
}
export declare function insertScript(id: string, src: string, options?: InsertScriptOptions): boolean;
