import { PropertyDefinition, PropertyDisplaySettingsType, PropertyEditorSettingsType, PropertySetupSettingsType } from "./PropertyDefinition";
export interface PropertyConfiguration<TPropertyDef extends PropertyDefinition<any, any, any>> {
    propertyDisplaySettings: PropertyDisplaySettingsType<TPropertyDef>;
    propertyEditorSettings: PropertyEditorSettingsType<TPropertyDef>;
    propertySetupSettings?: PropertySetupSettingsType<TPropertyDef>;
}
