import { ReadAwsSecretStringForStageOptions } from './readAwsSecretStringForStage'; /** * Reads all the specified secrets from AWS Secrets Manager and * returns an object whose keys are the secret names and whose values * are the corresponding secret values. * * The full secret name should follow the convention `stage/secretName`. * * The secret names passed to this function should not be prefixed * with the stage name. For example, if the stored secret name is * `production/github/accessToken`, the secret name passed to this * function should be just `github/accessToken`. * * The stage is automatically read from the `stage` option * or from `process.env.STAGE` and prepended to the secret name * before it's fetched. * * Note: this function only supports secrets stored as strings. It does not support * binary secrets. * * @param secretNames The friendly names of the secrets, i.e. `github/accessToken`, * without the stage prefix. * @param options Options passed to this function apply to _all_ secrets. * @see `readAwsSecretStringForStage` */ export declare const readAwsSecretStringsForStage: (secretNames: SecretName[], options?: ReadAwsSecretStringForStageOptions) => Promise>;