import type { ReactNode } from 'react';
import React from 'react';
export default function HotReload({ assetPrefix, children, notFound, notFoundStyles, asNotFound, }: {
    assetPrefix: string;
    children?: ReactNode;
    notFound?: React.ReactNode;
    notFoundStyles?: React.ReactNode;
    asNotFound?: boolean;
}): React.JSX.Element;
