declare const _default: {
    abi: ({
        type: string;
        payable: boolean;
        inputs: {
            type: string;
            name: string;
        }[];
        anonymous?: undefined;
        name?: undefined;
        constant?: undefined;
        stateMutability?: undefined;
        outputs?: undefined;
    } | {
        type: string;
        anonymous: boolean;
        name: string;
        inputs: {
            type: string;
            name: string;
            indexed: boolean;
        }[];
        payable?: undefined;
        constant?: undefined;
        stateMutability?: undefined;
        outputs?: undefined;
    } | {
        type: string;
        name: string;
        constant: boolean;
        stateMutability: string;
        payable: boolean;
        inputs: {
            type: string;
            name: string;
        }[];
        outputs: {
            type: string;
            name: string;
        }[];
        anonymous?: undefined;
    } | {
        type: string;
        name: string;
        constant: boolean;
        payable: boolean;
        inputs: {
            type: string;
            name: string;
        }[];
        outputs: {
            type: string;
            name: string;
        }[];
        anonymous?: undefined;
        stateMutability?: undefined;
    })[];
};
export default _default;
