import type { IslandFramework, IslandHydrate } from '../../types/island'; type RawIslandProps = { component: string; framework: string; hydrate?: string | undefined; props: unknown; }; export declare const normalizeRuntimeIslandRenderProps: (raw: RawIslandProps) => { component: string; framework: IslandFramework; hydrate: IslandHydrate | undefined; props: Record; }; export declare const normalizeIslandProps: (value: unknown) => Record; export {};