export default interface Property {
    _attributes: {
        name: string;
        value?: string;
    };
    _cdata?: string;
    item?: {
        _attributes: {
            name: string;
        };
        _cdata?: string;
        _text?: string;
    }[];
}
//# sourceMappingURL=Property.d.ts.map