import * as React from 'react'; import { ReactNode } from 'react'; import { ShowControllerResult } from './useShowController'; /** * Create a Show Context. * * @example * * const MyShow = (props) => { * const controllerProps = useShowController(props); * return ( * * * * ); * }; * * const MyShowView = () => { * const record = useRecordContext(); * } * * @see ShowContext * @see RecordContext */ export declare const ShowContextProvider: ({ children, value, }: { children: ReactNode; value: ShowControllerResult; }) => React.JSX.Element; //# sourceMappingURL=ShowContextProvider.d.ts.map