import { type HydrationStrategy } from 'vue';
import { IHydrationProps } from '../types/types';
/**
 * Get the hydration strategy based on the hydration properties.
 *
 * @param {IHydrationProps} props - The hydration properties.
 * @returns {HydrationStrategy} The hydration strategy.
 */
export declare function getHydrationStrategy(props: IHydrationProps): HydrationStrategy;
