import { SearchService } from './services/search.js'; import type { TrussClientConfig } from './types/index.js'; export declare class TrussClient { readonly search: SearchService; private readonly config; constructor(config: TrussClientConfig); /** * Get the current configuration (API key is redacted; use {@link setApiKey} / constructor to set secrets). */ getConfig(): Readonly; /** * Update the API key */ setApiKey(apiKey: string): void; } //# sourceMappingURL=client.d.ts.map