declare interface IClassInfo {
    sourceFile: string;
    className: string;
    extends?: IClassInfo[];
}
declare interface IUIInfo {
    prefab: string;
    tsClass: IClassInfo;
    children: IUIInfo[];
}
export declare class UIRelations {
    private static project;
    private static clsss;
    static build(): Promise<void>;
    private static isExtends;
    private static getClassInfo;
    static getAllForms(): IUIInfo[];
    private static getUIInfo;
    private static getPrefabPath;
    private static getSubForms;
}
export {};
