/// export interface LoaderOptions { apiKey: string; region?: string; } export declare class Loader { #private; constructor({ apiKey, region }: LoaderOptions); importLibrary(name: string): Promise; load(): Promise; }