import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface SetTabIndex extends _Tag { type: TagType.SetTabIndex; depth: Uint16; index: Uint16; } export declare const $SetTabIndex: DocumentIoType;