import { Feature } from "../../types";
import { ContractSchema } from "../contractSchema";
import { Generator } from "../generator";
export declare class ContractStartGen implements Generator {
gen(schema: ContractSchema): string;
getBaseInheritance(features: Feature[]): string[];
}