import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { ImageType } from "../image-type"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface DefineBitmap extends _Tag { readonly type: TagType.DefineBitmap; readonly id: Uint16; readonly width: Uint16; readonly height: Uint16; readonly mediaType: ImageType; readonly data: Uint8Array; } export declare const $DefineBitmap: DocumentIoType;