import { AnyString, RaRecord, RecordTables } from './helpers'; import { type FieldProps as RaFieldProps } from 'ra-ui-materialui'; import { type InputProps as RaInputProps } from 'ra-core'; import { type Except } from 'type-fest'; export type InputProps = { resource?: AnyString | RecordTables; source: { [K in keyof RecordType]: K extends string ? K : never; }[keyof RecordType] | AnyString; } & Except, 'resource' | 'source'>; export type FieldProps = { resource?: AnyString | RecordTables; source: { [K in keyof RecordType]: K extends string ? K : never; }[keyof RecordType] | AnyString; } & Except, 'resource' | 'source'>; //# sourceMappingURL=admin.d.ts.map