import * as React from "react"; import type { Props as SelectProps } from "@kiwicom/orbit-components/lib/Select"; declare type Props = { value: string; } & Omit; declare const CountrySelect: React.FunctionComponent; export default CountrySelect;