import React, { type ReactNode } from "react";
import type { GroupBase, Props, StylesConfig } from "react-select";
import { type PropsValue } from "react-select";
import type Select from "react-select/base";
import type { FieldLabelProps } from "../FieldLabel/FieldLabel.type";
import { type StyledProps } from "../StyledProps";
import { type CustomOnChangeValue } from "./lib";
export type NDSOptionValue = string | number | boolean | null;
export interface NDSOption {
label: ReactNode;
value: NDSOptionValue;
}
export interface CustomProps