/// import { Artifact, BaseBundleBuilder, BundleBuilderOptions } from './base'; import type { BundleWithDsseEnvelope } from '@sigstore/bundle'; import type { Signature } from '../signer'; export declare class DSSEBundleBuilder extends BaseBundleBuilder { constructor(options: BundleBuilderOptions); protected prepare(artifact: Artifact): Promise; protected package(artifact: Artifact, signature: Signature): Promise; }