import { ISdtfAttribute, ISdtfAttributes } from '../../structure/components/ISdtfAttributes'; import { ISdtfBaseReadableComponent, SdtfReadableBase } from './ISdtfBaseReadableComponent'; import { ISdtfReadableTypeHint } from './ISdtfReadableTypeHint'; export interface ISdtfReadableAttributes extends ISdtfBaseReadableComponent, Omit, 'entries'> { entries: Record; } export interface ISdtfReadableAttribute extends Omit, Omit { typeHint?: ISdtfReadableTypeHint; getContent(): Promise; } //# sourceMappingURL=ISdtfReadableAttributes.d.ts.map