import { ReactNode } from 'react'; import { Node } from './interfaces'; export declare function hydrate(data: string | string[] | Node | Node[] | null, editMode?: boolean): ReactNode[]; export interface HydrateProps { _key?: string; tag: string; className?: string; children?: Node[] | string[] | undefined | null; onClick?: (e: any) => void; editMode?: boolean; [key: string]: unknown; } export declare function Hydrate({ _key, tag, children, className, editMode, onClick, ...rest }: HydrateProps): ReactNode | null | undefined;