import { ISdtfDataItem } from '../../structure/components/ISdtfDataItem'; import { ISdtfBaseReadableComponent, SdtfReadableBase } from './ISdtfBaseReadableComponent'; import { ISdtfReadableAttributes } from './ISdtfReadableAttributes'; import { ISdtfReadableTypeHint } from './ISdtfReadableTypeHint'; export interface ISdtfReadableDataItem extends ISdtfBaseReadableComponent, Omit, 'accessor' | 'attributes' | 'typeHint' | 'value'> { attributes?: ISdtfReadableAttributes; typeHint?: ISdtfReadableTypeHint; getContent(): Promise; } //# sourceMappingURL=ISdtfReadableDataItem.d.ts.map