/** * Parse color string to RGBA tuple. Each channel is in [0, 255], matching the byte * representation we upload to GPU color buffers. * This function does not work in SSR. */ export declare function parseColor(color: string): [number, number, number, number];