import React from "react"; import "./SconeSelect.scss"; export declare type SelectOptionType = { title: string; value: string; }; interface SelectProps { name: string; options: SelectOptionType[]; value: string; handleChange: (event: React.ChangeEvent) => void; } declare const SconeSelect: (props: SelectProps) => JSX.Element; export default SconeSelect;