import { Swatch } from '../swatch.js'; /** * Determines if a color should be considered Dark Mode * @param color - The color to check to mode of * @returns boolean * * @public */ export declare function isDark(color: Swatch): boolean;