import { GradientColorValue } from './interface'; interface HistoryProps { type: T; onSelect: (color: T extends 'linear' ? string | GradientColorValue : string) => void; } export default function History({ type, onSelect, }: HistoryProps): import("react/jsx-runtime").JSX.Element; export {};