import { PropsWithChildren } from 'react'; declare function ReadonlyField({ label, source, defaultValue, children, tooltip: _tooltip, ...props }: ReadonlyFieldProps): JSX.Element; type ReadonlyFieldProps = PropsWithChildren<{ defaultValue: any; tooltip: string | boolean | ((record: any) => string); source: string; label: string; name: string; fullWidth?: boolean; }>; export { ReadonlyField }; export type { ReadonlyFieldProps }; //# sourceMappingURL=ReadonlyField.d.ts.map