import { DocumentIoType } from "kryo/types/document"; import { Sint16 } from "semantic-types"; import { Mp3Frame } from "./mp3-frame"; export interface Mp3SoundData { seekSamples: Sint16; mp3Frames: Mp3Frame[]; } export declare const $Mp3SoundData: DocumentIoType;