import AWS from "aws-sdk";
export default class AWSClient {
    private ssm;
    constructor();
    getParameterStoreValue(path: string, withDecryption?: boolean): Promise<string | undefined>;
    updateParameterStoreValue(path: string, value: string, type?: string): Promise<import("aws-sdk/lib/request").PromiseResult<AWS.SSM.PutParameterResult, AWS.AWSError>>;
}
//# sourceMappingURL=index.d.ts.map