import { SelectProps } from "antd"; //#region src/components/taxSelect/index.d.ts interface TaxSelectProps { selectProps?: SelectProps; value: string; tax_rate?: string; tax_title?: string; onChange: (value: string) => void; } declare const TaxSelect: (props: TaxSelectProps) => JSX.Element; //#endregion export { TaxSelect };