import { TruPropertyConfigBase } from './tru-property-config-base'; export declare abstract class TruEditParentControlConfigBase { abstract label: string | undefined; abstract propertyName: string | undefined; abstract rootTable: string | undefined; abstract propertyPath: string | undefined; abstract get property(): TruPropertyConfigBase; constructor(); }