import { ApolloClient, NormalizedCacheObject } from '@apollo/client'; import * as pino from 'pino'; import { ExportTarget } from './prepare-bundle'; export interface SecretReference { [SecretName: string]: { /** * This is the value of the secret. We do not propagate the secret value */ name: string; description?: string; }; } export declare const getBundleSecrets: (logger: pino.BaseLogger, client: ApolloClient, options: { target: ExportTarget; }) => Promise;