/// interface IProps { type: 'size' | 'color' | 'stroke' | 'stroke-color' | 'stroke-size' | 'stroke-opacity' | 'weight' | 'intensity'; method: 'match' | 'step'; selectedCol: string; } declare const Conditional: ({ type, method, selectedCol }: IProps) => JSX.Element; export default Conditional;