import React from 'react'; import { SelectFieldProps } from 'react-admin'; import { LabeledFieldProps } from '../../../config'; type CountryFieldProps = Omit & { source?: string; }; export declare function CountryField(props: LabeledFieldProps): React.JSX.Element; export {};