//#region src/main/djinni-types/sdcCoreCommonGraphic.d.ts declare enum Channel { Y = 0, U = 1, V = 2, R = 3, G = 4, B = 5, A = 6, D = 7 } interface ImagePlane { channel: Channel; subsamplingX: number; subsamplingY: number; rowStride: number; pixelStride: number; data: Uint8Array; } interface SdcCoreCommonGraphic_statics {} //#endregion export { ImagePlane as n, SdcCoreCommonGraphic_statics as r, Channel as t };