import { Theme } from "../../../types/style-context"; import { CustomStyles } from "../../components/Select"; export interface SelectTheme { NamesList: CustomStyles; NameLine: CustomStyles; filterOption: (_: any) => (Option: any) => boolean; } declare type IThemes = { [key in Theme]: SelectTheme; }; declare const Themes: IThemes; export default Themes;