import React from 'react'; import { Country } from '@jetshop/core/types'; interface CountriesProps { onChange?(e: React.FormEvent): any; onFocus?(e: React.FormEvent): any; countries: Country[]; name: string; id?: string; disabled?: boolean; label?: string; } /** * Maps over the current channel's countries and displays them. */ export declare function CountriesInput({ id, name, onChange, onFocus, countries, ...rest }: CountriesProps): React.JSX.Element; export {};