import * as React from 'react'; import { MarginClassProps } from '../../utilities/marginClasses'; import { FormHandlers, AutocompleteAttribute } from './types'; export declare type SelectBoxOption = { name: string; value?: string; /** * disabled 状態にします */ disabled?: boolean; }; export declare type SelectBoxOptionGroup = { name: string; options: SelectBoxOption[]; /** * disabled 状態にします */ disabled?: boolean; }; /** * 汎用のselectコンポーネントです。 * 「複数のうちからひとつを選ぶ」入力欄の場合に使用してください。 * * - 必ず `