export declare abstract class Ast {
    readonly kind: string;
    protected constructor();
    abstract toString(): string;
}
