import * as pino from 'pino'; import { AWSAccountToEnvironmentRepresentation } from './get-bundle-aws-account-to-environment'; import { EnvironmentRepresentation } from './get-bundle-environments'; import { SecretReference } from './get-bundle-secrets'; import { RepositoryRepresentation } from './get-bundle-src'; export declare function writeElements(logger: pino.BaseLogger, folderPathAbs: string, options: { bundle: { code: RepositoryRepresentation; environments: EnvironmentRepresentation; awsAccountAssociations: AWSAccountToEnvironmentRepresentation; secrets: SecretReference; }; }): Promise;