declare const ExampleContract: {
    abi: {
        "ABI version": number;
        version: string;
        header: string[];
        functions: ({
            name: string;
            inputs: {
                name: string;
                type: string;
            }[];
            outputs: never[];
        } | {
            name: string;
            inputs: never[];
            outputs: {
                name: string;
                type: string;
            }[];
        })[];
        data: never[];
        events: never[];
        fields: {
            name: string;
            type: string;
        }[];
    };
    tvc: string;
    code: string;
    codeHash: string;
};
export default ExampleContract;
//# sourceMappingURL=ExampleContent.d.ts.map