import { StructAssert } from '@ephox/agar'; import { Editor, GetContentArgs } from '../../alien/EditorTypes'; import { Presence } from '../pipeline/TinyApis'; declare const assertContent: (editor: Editor, expected: string, args?: GetContentArgs) => void; declare const assertRawContent: (editor: Editor, expected: string) => void; declare const assertContentPresence: (editor: Editor, expected: Presence) => void; declare const assertContentStructure: (editor: Editor, expected: StructAssert) => void; declare const assertSelection: (editor: Editor, startPath: number[], soffset: number, finishPath: number[], foffset: number) => void; declare const assertCursor: (editor: Editor, path: number[], offset: number) => void; export { assertContent, assertRawContent, assertContentPresence, assertContentStructure, assertCursor, assertSelection }; //# sourceMappingURL=TinyAssertions.d.ts.map