/// /** * 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 edit layout * * const PostShow = props => ( * * * * * ... * * * * Show instructions... * * *
* Post related links... *
*
* ); */ export declare const ShowBase: ({ children, ...props }: { [x: string]: any; children: any; }) => JSX.Element;