import { Burrow } from './index'; import * as solc from 'solc'; export declare const compile: (source: string, name: string) => { abi: (solc.Function | solc.Event)[]; bytecode: string; }; export declare const Test: () => { before: (callback?: (app: Burrow) => void) => () => void; it: (callback: (app: Burrow) => void) => () => void; after: () => () => void; };