import React from 'react'; import { TextFieldProps } from 'react-admin'; import { LabeledFieldProps } from '../../../config'; interface PhoneFieldProps extends TextFieldProps { source: string; } export declare function PhoneField(props: LabeledFieldProps): React.JSX.Element | null; export {};