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