import type { BaseFieldProps } from "ra-core"; import type { ReactNode } from "react"; export interface FieldProps< // eslint-disable-next-line @typescript-eslint/no-explicit-any RecordType extends Record = Record, > extends Omit, "resource"> { /** * The component to display when the field value is empty. Defaults to empty string. * * @example * const PostList = () => ( * * * * * * * ); */ empty?: ReactNode; }