import { Address } from '../../../node_modules/@btc-vision/transaction/build/index.js';
export interface IRawContract {
    readonly contractAddress: string;
    readonly contractPublicKey: string | Uint8Array;
    readonly bytecode: Uint8Array | string;
    readonly wasCompressed: boolean;
    readonly deployedTransactionId: string;
    readonly deployedTransactionHash: string;
    readonly deployerPubKey: Uint8Array | string;
    readonly contractSeed: Uint8Array | string;
    readonly contractSaltHash: Uint8Array | string;
    readonly deployerAddress: Address;
}
