import type { BaseClientOptions } from "../../../../BaseClient.js"; import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.js"; import { FlowsClient } from "../resources/flows/client/Client.js"; import { RulesClient } from "../resources/rules/client/Client.js"; export declare namespace TestsClient { type Options = BaseClientOptions; } export declare class TestsClient { protected readonly _options: NormalizedClientOptionsWithAuth; protected _rules: RulesClient | undefined; protected _flows: FlowsClient | undefined; constructor(options: TestsClient.Options); get rules(): RulesClient; get flows(): FlowsClient; }