declare const clearMetadataCache: () => void; /** * Fetches metadata from the AWS Lambda Metadata endpoint. * * When not running in a Lambda environment (e.g., during local development), it returns an empty object. */ type GetMetadataOptions = { timeout?: number; }; declare const getMetadata: (options?: GetMetadataOptions) => Promise>; export { clearMetadataCache, type GetMetadataOptions, getMetadata }; //# sourceMappingURL=metadata.d.ts.map