import { AbiItem } from 'web3-utils';
interface Abi {
    [index: string]: AbiItem;
}
interface Topic {
    [index: string]: {
        name: string;
        abi: AbiItem;
    };
}
declare const ABI: Abi;
declare const TOPIC: Topic;
export { ABI, TOPIC };
