///
import { SerializedBundle } from '@sigstore/bundle';
import * as config from './config';
export declare function sign(payload: Buffer, options?: config.SignOptions): Promise;
export declare function attest(payload: Buffer, payloadType: string, options?: config.SignOptions): Promise;
export declare function verify(bundle: SerializedBundle, options?: config.VerifyOptions): Promise;
export declare function verify(bundle: SerializedBundle, data: Buffer, options?: config.VerifyOptions): Promise;
export interface BundleVerifier {
verify(bundle: SerializedBundle, data?: Buffer): void;
}
export declare function createVerifier(options?: config.VerifyOptions): Promise;