import { Component, JSX } from "solid-js"; import "./base.css"; import "./select.css"; export declare type SelectProps = JSX.SelectHTMLAttributes & { label: JSX.Element; setValue?: (value: string) => void; }; export declare const Select: Component;