export { isClientSideRoutable };
import type { PageFile } from '../../shared/getPageFiles.js';
import type { PageConfigRuntime } from '../../shared/page-configs/PageConfig.js';
type PageContextPageFiles = {
    _pageFilesAll: PageFile[];
    _pageConfigs: PageConfigRuntime[];
};
declare function isClientSideRoutable(pageId: string, pageContext: PageContextPageFiles): Promise<boolean>;
