import type { AutoEncoderPatchType, PatchMap } from '@simonbackx/simple-encoding'; import type { RecordAnswer } from './records/RecordAnswer.js'; import type { Filterable } from './records/RecordCategory.js'; import type { RecordSettings } from './records/RecordSettings.js'; export type PatchAnswers = PatchMap | null>; export interface ObjectWithRecords extends Filterable { isRecordEnabled(record: RecordSettings): boolean; getRecordAnswers(): Map; patchRecordAnswers(patch: PatchAnswers): this; } //# sourceMappingURL=ObjectWithRecords.d.ts.map