import React from 'react'; interface TaskSelectOption { value: string; label: string; color?: string; } interface TaskSelectProps { label: string; value: string; onValueChange: (value: string) => void; options: TaskSelectOption[]; showColor?: boolean; disabled?: boolean; } export declare const TaskSelect: React.FC; export {};