declare module 'react-select-custom-component' {
    import { FC } from 'react';

    export interface CustomComponentProps {
        data: any[],
        title: object;
        placeholder: object;
        listItemStyle: object;
        isSearch: boolean;
        lang: string;
        mandatory: boolean;
        style: object;
        className: string;
        changeSelectedHandler: (value: string) => any;
        // Agar boshqa propslar mavjud bo'lsa, ularni ham kiritishingiz mumkin
    }
    export const MultipleSelect: FC<CustomComponentProps>;
}