import { IPropertyConverter } from "../converters/converter";
import { FunctionType, IXPathSelectorItem, IXmlNamespaces } from "../types";
export declare class PropertyDefinition {
    objectType: FunctionType | undefined;
    array: boolean;
    set: boolean;
    readonly: boolean;
    writeonly: boolean;
    converter: IPropertyConverter | undefined;
    xpathSelector: string | undefined;
    xpathSelectorParsed: IXPathSelectorItem[] | undefined;
    namespaces: IXmlNamespaces | undefined;
}
