import * as React from 'react'; import { RaRecord } from '../../types'; import { ShowControllerProps } from './useShowController'; /** * Call useShowController and put the value in a ShowContext * * Base class for components, without UI. * * Accepts any props accepted by useShowController: * - id: The record identifier * - resource: The resource * * @example // Custom show layout * * const PostShow = () => ( * * * * * ... * * * * Show instructions... * * *
* Post related links... *
*
* ); */ export declare const ShowBase: ({ children, loading, ...props }: ShowBaseProps) => string | number | boolean | Iterable | React.JSX.Element | null; export interface ShowBaseProps extends ShowControllerProps { children: React.ReactNode; loading?: React.ReactNode; } //# sourceMappingURL=ShowBase.d.ts.map