export declare abstract class Buildable<T> {
    protected abstract builderInstance(): T;
    static builder<T>(this: new () => Buildable<T>): T;
}
