import { PropsWithChildren } from "react"; import { DesignTypes } from "../typings"; export interface SelectBaseType { options: DesignTypes['Option'][]; defaultValue?: DesignTypes['Option']['value'][]; onValueChange?: (newValue: DesignTypes['Option']['value'][] | undefined) => void; maxShow?: number; } export declare type ValueType = DesignTypes['Option']['value'][] | undefined; export declare type SelectPropsType = PropsWithChildren & JSX.IntrinsicElements['input'];