import React from 'react';
import { Upazila, UnionData } from '../types';
interface UnionSelectProps {
    upazila?: Upazila;
    value?: UnionData;
    onChange?: (union: UnionData) => void;
    language?: 'en' | 'bn';
    className?: string;
    placeholder?: string;
    customLabel?: string | React.ReactNode;
    customError?: string | React.ReactNode;
    theme?: any;
    errorClassName?: string;
    labelClassName?: string;
    containerClassName?: string;
    showLabels?: boolean;
}
export default function UnionSelect({ upazila, value, onChange, language, className, placeholder, customLabel, customError, theme, errorClassName, labelClassName, containerClassName, showLabels, }: UnionSelectProps): React.JSX.Element;
export {};
