import { SensClientConfig, SensClientResolvedConfig, SensCommand } from "./models/index.js";
export declare class SensClient {
    config: SensClientResolvedConfig;
    private httpHandler;
    private requestHandler;
    constructor(config: SensClientConfig);
    send<T, P>(command: SensCommand<T, P, SensClientResolvedConfig>): Promise<P>;
}
