import React from 'react'; import { FileFieldProps } from 'react-admin'; interface FileViewerFieldProps extends FileFieldProps { typeSource?: string; useLabel?: boolean; } export declare function FileViewerField(props: FileViewerFieldProps): React.JSX.Element | null; export {};