import { ComponentProps } from "react" import { GroupBase } from "react-select" export type SelectSize = "sm" | "md" type SelectComponent = "control" | "inner_control" | "menu" type SelectComponentStyles = Partial< Record["className"]> > declare module "react-select/dist/declarations/src/Select" { export interface Props< Option, IsMulti extends boolean, Group extends GroupBase