import { InitializeSpotInstrumentConfigInput, InitializeSpotInstrumentConfigOutput, ModifySpotInstrumentConfigInput, ModifySpotInstrumentConfigOutput, FetchSpotInstrumentConfigInput, FetchSpotInstrumentConfigOutput } from './operations'; import { SpotInstrumentPdasClient } from './pdas'; import { OperationOptions } from '../../types'; import { Convergence } from '../../Convergence'; export declare class SpotInstrumentClient { protected readonly cvg: Convergence; constructor(cvg: Convergence); pdas(): SpotInstrumentPdasClient; fetchConfig(input?: FetchSpotInstrumentConfigInput, options?: OperationOptions): Promise; initializeConfig(input: InitializeSpotInstrumentConfigInput, options?: OperationOptions): Promise; modifyConfig(input: ModifySpotInstrumentConfigInput, options?: OperationOptions): Promise; }