import { type ProviderClient } from './provider-client.js'; import type { RelayClientOptions } from './transport.js'; /** * Ergonomic Reddit client over the writeback-path catalog. Wraps the generic * `providerClient('reddit')` so that any `{ subreddit }` param is normalized * (lowercased, `r/` prefix stripped) before path substitution — matching the * reddit adapter's canonical write path. Without this, `posts.list({ subreddit: * 'LocalLLaMA' })` resolves to `/reddit/subreddits/LocalLLaMA/posts` and misses * every synced record, which lives under the lowercased subdirectory. */ export declare function redditClient(opts?: RelayClientOptions): ProviderClient<'reddit'>; //# sourceMappingURL=reddit.d.ts.map