import type { FixedNumberArray } from '../../utils'; /** * represents the RGBA as an array ranges from 0 - 1 * white = [1,1,1,1]; * red = [1,0,0,1]; * 50% alpha red = [1, 0, 0, 0.5]; * full clear = [0, 0, 0, 0]; */ export declare type ColorArray = FixedNumberArray<4>; export declare const CLEAR_COLOR: ColorArray; //# sourceMappingURL=ColorArray.d.ts.map