import React from "react"; import { Country } from "../../types"; export type SearchableSelectInputProps = { searchTerm: string; searchPlaceholder?: string; classes: Record; inputRef: React.RefObject; fullWidth: boolean; selectWidth: number; selectHeight: number; selected: Country | null; selectedSize: number; disabled: boolean; handleToggleSelect: () => void; handleSearch: () => void; }; export declare const SearchableSelectInput: React.FC;