import { SelectHTMLAttributes, PropsWithChildren } from "react"; import { NoBaseOrNeutralVariant } from "../../@types/Colors"; import { Size } from "../../@types/Daisy"; interface ISelect extends PropsWithChildren> { isBordered?: boolean; isGhost?: boolean; scale?: Size; variant?: NoBaseOrNeutralVariant; } export declare const Select: import("react").ForwardRefExoticComponent>; export {};