import type { LoaderTree } from '../../lib/app-dir-module'; import type { AppSegmentConfig, InstantSample } from '../../../build/segment-config/app/app-segment-config'; export declare function anySegmentHasRuntimePrefetchEnabled(tree: LoaderTree): Promise; export declare function isPageAllowedToBlock(tree: LoaderTree): Promise; type FoundSegmentWithConfig = { path: string[]; config: NonNullable; }; export declare const anySegmentNeedsInstantValidationInDev: (arg: LoaderTree) => Promise; export declare const anySegmentNeedsInstantValidationInBuild: (arg: LoaderTree) => Promise; export declare const findSegmentsWithInstantConfig: (arg: LoaderTree) => Promise; export declare const resolveInstantConfigSamplesForPage: (tree: LoaderTree) => Promise; export {};