import { CSSProperties } from "preact/compat"; type Props = { options?: Array; label?: string; onChange?: (index: number, value: string) => void; style?: CSSProperties; width?: number; }; declare const SelectBox: ({ options, label, onChange, style, width }: Props) => import("preact/compat").JSX.Element; export default SelectBox;