type ColorObject = Record<'r' | 'g' | 'b' | 'a', number>; export declare const toColorObject: (rgbOrHex: string) => ColorObject; export declare const tint: (ratio: number, inputColor: string, { toColor, useLinear, reformat, }?: { toColor?: string; useLinear?: boolean; reformat?: boolean; }) => string; export {};