import { ConfigServiceInterface } from './ConfigServiceInterface'; import { EnvironmentVariablesService as CommonEnvironmentVariablesService } from '@aws-lambda-powertools/commons'; declare class EnvironmentVariablesService extends CommonEnvironmentVariablesService implements ConfigServiceInterface { private awsRegionVariable; private currentEnvironmentVariable; private devModeVariable; private functionNameVariable; private functionVersionVariable; private logEventVariable; private logLevelVariable; private memoryLimitInMBVariable; private sampleRateValueVariable; getAwsRegion(): string; getCurrentEnvironment(): string; getFunctionMemory(): number; getFunctionName(): string; getFunctionVersion(): string; getLogEvent(): boolean; getLogLevel(): string; getSampleRateValue(): number | undefined; isDevMode(): boolean; } export { EnvironmentVariablesService }; //# sourceMappingURL=EnvironmentVariablesService.d.ts.map