import type { Client } from "./client"; /** * @internal * * @param commands - command lookup container. * @param Client - client instance on which to add aggregated methods. * @param options * @param options.paginators - paginator functions. * @param options.waiters - waiter functions. * * @returns an aggregated client with dynamically created methods. */ export declare const createAggregatedClient: (commands: Record, Client: { new (...args: any): Client; }, options?: { paginators?: Record; waiters?: Record; }) => void;