export interface Schematic {
    id: string;
    kind: string;
    packageSuffix?: string;
    name?: string;
    nullable?: boolean;
    collapsed?: boolean;
    children?: Schematic[];
    childName?: string;
}
export declare function createSchematic(schematic?: Partial<Schematic>): Schematic;
export declare function moveSchematic(schematic: Schematic, moveId: string, parentId: string, sortBefore: string | null): Schematic;
