'use client' import * as SelectPrimitive from '@radix-ui/react-select' import { Check } from 'lucide-react' import { Select, SelectContent, SelectTrigger, SelectValue } from '@/components/ui/select' import { cn } from '@/lib/utils' import { VAT_TREATMENT_OPTIONS } from './transaction-types' import type { VatTreatment } from '@/types' interface VatTreatmentSelectProps { value: VatTreatment | 'none' onValueChange: (value: VatTreatment | 'none') => void disabled?: boolean } export default function VatTreatmentSelect({ value, onValueChange, disabled, }: VatTreatmentSelectProps) { return ( ) }