1 | import React from 'react';
|
2 | import { HydrateOptions } from '../core';
|
3 | export declare function useHydrate(state: unknown, options?: HydrateOptions): void;
|
4 | export interface HydrateProps {
|
5 | state?: unknown;
|
6 | options?: HydrateOptions;
|
7 | children?: React.ReactNode;
|
8 | }
|
9 | export declare const Hydrate: ({ children, options, state }: HydrateProps) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, any> | null) | (new (props: any) => React.Component<any, any, any>)>;
|
10 |
|
\ | No newline at end of file |