interface Options {
    fileName?: null | string;
    contractsFolder?: null | string;
}
export declare function compile(contractName: string, options?: Options): {
    abi: any;
    bytecode: string;
    deployBytecode: string;
};
export {};
