import type { PropsWithChildren } from 'react';
import type { AnyWritableAtom, HydrateAtomOptions, InferAtomTuples } from './types.js';
export declare function HydrationBoundary<T extends (readonly [AnyWritableAtom, ...unknown[]])[]>({ children, hydrateAtoms, options, }: PropsWithChildren<{
    hydrateAtoms: InferAtomTuples<T>;
    options?: HydrateAtomOptions | undefined;
}>): import("react/jsx-runtime").JSX.Element;
