import { DocumentIoType } from "kryo/types/document"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface FrameLabel extends _Tag { readonly type: TagType.FrameLabel; readonly name: string; readonly isAnchor: boolean; } export declare const $FrameLabel: DocumentIoType;