export declare class JspmError extends Error {
    jspmError: boolean;
    code: string | undefined;
    constructor(msg: string, code?: string);
}
export declare function throwInternalError(...args: any[]): never;
