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