import { FC } from "preact/compat"; export interface HydrationProps { method?: 'idle' | 'visible' | 'interaction'; } export declare function withHydrate>(Component: T, hydrationProps?: HydrationProps): T;