import { Condition } from "../Api/DataTypes/Condition";
import { PropertyMetaInformation } from "../Api/DataTypes/PropertyMetaInformation";
import { TypeMetaInformation } from "../Api/DataTypes/TypeMetaInformation";
export declare class PropertyMetaInformationUtils {
    static hasFilledRequiredFields(conditions: Condition[], properties: PropertyMetaInformation[]): boolean;
    static getProperties(properties: PropertyMetaInformation[], prevName?: string): PropertyMetaInformation[];
    static getPropertyTypeByPath(type: TypeMetaInformation, path: string[]): PropertyMetaInformation;
}
