import { FC } from "react"; interface BatchLabelProps { placeholder?: string; prefix: string; onChange?: (value: string[]) => any; onRemove?: (value: string) => any; value?: string[]; options: { label: string; value: string; }[]; } declare const BatchLabel: FC; export default BatchLabel;