import React from 'react'; interface NameAndTelephoneProps { fullName?: string; telephone?: string; getFieldName?: (fieldName: string) => string; } export declare function NameAndTelephone({ fullName, telephone, getFieldName }: NameAndTelephoneProps): React.JSX.Element; export {};