/** * Copied from: * https://github.com/software-mansion/react-native-reanimated/blob/master/src/reanimated2/Colors.ts */ export declare const colorNames: { [key: string]: number; }; export declare function processColor(color: string): number; /** * @description This function allows you to map a range of values to colors using a concise syntax. * @see [Documentation](https://www.remotion.dev/docs/interpolate-colors) */ export declare const interpolateColors: (input: number, inputRange: readonly number[], outputRange: readonly string[]) => string;