import { LinkFieldPayload } from '../Link'; interface DocumentFieldProps { customtypes?: string[]; label?: string; placeholder?: string; } declare const Document: { ({ label, placeholder, customtypes }: DocumentFieldProps): (fieldName: string) => LinkFieldPayload; Document: () => { content: any; }; }; export default Document;