declare const abi: ({
    name: string;
    inputs: {
        type: string;
        name: string;
        indexed: boolean;
    }[];
    anonymous: boolean;
    type: string;
    outputs?: undefined;
    stateMutability?: undefined;
} | {
    outputs: never[];
    inputs: {
        type: string;
        name: string;
    }[];
    stateMutability: string;
    type: string;
    name?: undefined;
    anonymous?: undefined;
} | {
    name: string;
    outputs: {
        type: string;
        name: string;
    }[];
    inputs: {
        type: string;
        name: string;
    }[];
    stateMutability: string;
    type: string;
    anonymous?: undefined;
})[];
export default abi;
//# sourceMappingURL=curveV1.d.ts.map