export declare const blue = "#0d6efd"; export declare const indigo = "#6610f2"; export declare const purple = "#6f42c1"; export declare const pink = "#d63384"; export declare const red = "#dc3545"; export declare const orange = "#fd7e14"; export declare const yellow = "#ffc107"; export declare const green = "#198754"; export declare const teal = "#20c997"; export declare const cyan = "#0dcaf0"; export declare const white = "#ffffff"; export declare const gray100 = "#f8f9fa"; export declare const gray200 = "#e9ecef"; export declare const gray300 = "#dee2e6"; export declare const gray400 = "#ced4da"; export declare const gray500 = "#adb5bd"; export declare const gray600 = "#6c757d"; export declare const gray700 = "#495057"; export declare const gray800 = "#343a40"; export declare const gray900 = "#212529"; export declare const black = "#000"; export declare const transparent = "transparent"; export declare const body = "#ffffff"; export declare const bodySecondary = "#eaecef"; export declare const bodyTertiary = "#f8f9fa"; export declare const primary = "#0d6efd"; export declare const secondary = "#6c757d"; export declare const success = "#198754"; export declare const info = "#0dcaf0"; export declare const warning = "#ffc107"; export declare const danger = "#dc3545"; export declare const light = "#f8f9fa"; export declare const dark = "#212529"; export declare const primarySubtle = "#d0e2ff"; export declare const secondarySubtle = "#e2e3e5"; export declare const successSubtle = "#d1e7de"; export declare const infoSubtle = "#cff4fc"; export declare const warningSubtle = "#fff3cd"; export declare const dangerSubtle = "#f9d7da"; export declare const lightSubtle = "#fcfcfd"; export declare const darkSubtle = "#ced4da"; export declare function hexToRgb(hex: string): number[]; export declare function findTextColor(backgroundColor: string): string; export declare function findDarkColor(color: string, dark?: number): string; export declare function findLightColor(hex: string, percent?: number): string; export declare function getColorBetween(percentage: number, startColor?: string, endColor?: string): string; export declare function intToHex(num: number): string; export declare function rgbToHex(red: number, green: number, blue: number): string;