export function configure(fn: Fn): Factory; export type Options = import("../types").Options; export type Fn = (client: Client, clientOptions: Options) => T; export type Factory = (clientOptions: Options) => T; import { Client } from "./core.js"; //# sourceMappingURL=configure.d.ts.map