import { GlideAggregate } from "../types/GlideAggregate"; export declare class HierarchyValidator { checkLogicalElementExists( tableName?: string, element?: string ): GlideAggregate; checkPhysicalColumnExists( tableName?: string, column?: string ): GlideAggregate; findExtensionsMissingElement( tableName?: string, element?: string ): Array; findPartitionsMissingColumn(tableName?: string, column?: string): Array; constructor(); }