@react-navigation/native
Version:
React Native integration for React Navigation
14 lines • 610 B
TypeScript
import * as React from 'react';
import { type ServerContextType } from './ServerContext';
import type { ServerContainerRef } from './types';
/**
* Container component for server rendering.
*
* @param props.location Location object to base the initial URL for SSR.
* @param props.children Child elements to render the content.
* @param props.ref Ref object which contains helper methods.
*/
export declare const ServerContainer: React.ForwardRefExoticComponent<ServerContextType & {
children: React.ReactNode;
} & React.RefAttributes<ServerContainerRef>>;
//# sourceMappingURL=ServerContainer.d.ts.map