import { CustomElementPropertyMetadata } from "../../interfaces"; /** * Mixin for a component that holds a collection of records * @param Base * @returns */ declare const DataHolderMixin: (Base: any) => { new (): { [x: string]: any; }; [x: string]: any; readonly properties: Record; }; export default DataHolderMixin; //# sourceMappingURL=DataHolderMixin.d.ts.map