import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { ButtonCondAction } from "../button/button-cond-action"; import { ButtonRecord } from "../button/button-record"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface DefineButton extends _Tag { readonly type: TagType.DefineButton; readonly id: Uint16; readonly trackAsMenu: boolean; readonly characters: ReadonlyArray; readonly actions: ReadonlyArray; } export declare const $DefineButton: DocumentIoType;