import { SelectHTMLAttributes } from 'react';
interface Option {
id: string;
title: string;
}
export interface SelectProps extends SelectHTMLAttributes {
name: string;
label?: string;
placeholder?: string;
options: Option[];
}
declare function Select({ name, label, placeholder, defaultValue, options, ...rest }: SelectProps): JSX.Element;
declare namespace Select {
var defaultProps: Partial;
}
export default Select;