import type { ReanimatedSpec } from 'mythik'; export type TriggerContribution = { progress: number; spec: ReanimatedSpec; }; export type InterpolateFn = (value: number, inputRange: number[], outputRange: number[]) => number; export type InterpolateColorFn = (value: number, inputRange: number[], outputRange: string[]) => string; export declare function composeRNStyle(contributions: TriggerContribution[], interpolate: InterpolateFn, interpolateColor: InterpolateColorFn): Record; //# sourceMappingURL=compose-rn-style.d.ts.map