export type LoadOpenApiOptions = { authHeaders?: Array<[string, string]>; cacheDir?: string; cacheKey?: string; ttlSeconds?: number; refresh?: boolean; }; export type OpenApiSpec = Record & { paths: Record; }; export declare function loadOpenApiSpec(source: string, options?: LoadOpenApiOptions): Promise;