import { FunctionComponent } from 'react'; import { LocalizedOption } from '@gecogvidanto/shared'; import { langType } from '../../../../locale'; export interface SelectChoiceProps { choice: LocalizedOption; } /** * A choice of the select component. */ declare const SelectChoice: FunctionComponent; export default SelectChoice;