import React from 'react';
import { District, Upazila } from "../types/index";
interface UpazilaSelectProps {
    district?: District;
    value?: Upazila;
    onChange?: (upazila: Upazila) => void;
    language?: 'en' | 'bn';
    className?: string;
    placeholder?: string;
    customLabel?: string | React.ReactNode;
    customError?: string | React.ReactNode;
    theme?: any;
    errorClassName?: string;
    labelClassName?: string;
    containerClassName?: string;
}
export default function UpazilaSelect({ district, value, onChange, language, className, placeholder, customLabel, customError, theme, errorClassName, labelClassName, containerClassName, }: UpazilaSelectProps): React.JSX.Element;
export {};
