import React from "react"; import "./assets/Input.scss"; export declare const Select: React.FC; export interface SelectProps { name: string; options: string[]; label?: string; required?: boolean; multiple?: boolean; onChange?: (value: React.ChangeEvent) => void; value?: any; error?: string; }