import { type Optional } from '@ephox/katamari'; import type { AlloyComponent } from './ComponentApi'; import type { SimpleOrSketchSpec } from './SpecTypes'; export interface MementoRecord { get: (comp: AlloyComponent) => AlloyComponent; getOpt: (comp: AlloyComponent) => Optional; asSpec: () => SimpleOrSketchSpec; } declare const record: (spec: SimpleOrSketchSpec) => MementoRecord; export { record }; //# sourceMappingURL=Memento.d.ts.map