import IElement from "./IElement"; export interface IPropertyInfo { key?: string; getter(item: any): any; setter(item: any, value: any): void; } export declare function getPropertyInfo(propertyPath: string[] | string | IPropertyInfo): IPropertyInfo; export interface IEditable extends IElement { propertyPath: string[] | string | IPropertyInfo; } export declare function EditableInput({ propertyPath, ...a }: IEditable): any; //# sourceMappingURL=Editable.d.ts.map