/** * A store "result" decorator, which adds some attributes to the output fields. * * usage: * store = AttributeExtender(store,[{name : "label", value: "${id} - ${name}"}]) * * the store will now produce items which will have an attribute "label" with the produced text field " - ". * This store is useful if you use the 'labelAttr' property of ComboBox and FilteringSelect and like to have a more * complex label. */ declare function _default(store: any, attributeDefinitions: any, noDelegate: any): any; export { _default as default };