import type { SSM } from '@aws-sdk/client-ssm';
export declare type SsmConfig = {
    [key: string]: string | SsmConfig;
};
export declare const loadSsmConfig: (ssm: SSM, prefix?: string | undefined) => Promise<SsmConfig>;
