import { Address } from '@btc-vision/transaction';
import { IRawContract } from './interfaces/IRawContract.js';
export declare class ContractData implements Omit<IRawContract, 'contractTweakedPublicKey'> {
    readonly contractAddress: string;
    readonly contractPublicKey: Address;
    readonly bytecode: Buffer;
    readonly wasCompressed: boolean;
    readonly deployedTransactionId: string;
    readonly deployedTransactionHash: string;
    readonly deployerPubKey: Buffer;
    readonly contractSeed: Buffer;
    readonly contractSaltHash: Buffer;
    readonly deployerAddress: Address;
    constructor(raw: IRawContract);
}
