//#region src/is-valid-255-channel/index.d.ts /** * Check if a number is a valid color channel value (0-255). * * @param n - The number to check. * @returns true if the value is between 0-255, false otherwise. */ declare function isValid255Channel(n: number): boolean; //#endregion export { isValid255Channel }; //# sourceMappingURL=index.d.ts.map