import type { ColorContrastOptions, RGBAColor } from './types';
/**
 * Finds the best contrast color for text based on the provided options.
 * @param {ColorContrastOptions} options - Configuration for contrast color selection
 * @returns {string} Best contrast color for the text
 */
export declare function findContrastColor(options: ColorContrastOptions): string;
export type { ColorContrastOptions, RGBAColor };
