import { DocumentIoType } from "kryo/types/document"; import { Uint16, Uint32 } from "semantic-types"; import { SoundEnvelope } from "./sound-envelope"; export interface SoundInfo { syncStop: boolean; syncNoMultiple: boolean; inPoint?: Uint32; outPoint?: Uint32; loopCount?: Uint16; envelopeRecords?: SoundEnvelope[]; } export declare const $SoundInfo: DocumentIoType;