import { ObjectGraph } from '../../src'; export type HttpClient = { fetch: (url: string) => { response: { status: number; }; }; }; export type Config = { baseUrl: string; }; export declare class PrivateSubgraph extends ObjectGraph { httpClient(config: Config): HttpClient; config(): Config; } //# sourceMappingURL=privateSubgraph.d.ts.map