import React from 'react'; import { SelectInputProps } from 'react-admin'; type CountryInputProps = Omit & { source?: string; }; export declare function CountryInput(props: CountryInputProps): React.JSX.Element; export {};