import { BuildTarget } from "@trigger.dev/core/v3";
export declare const telemetryEntryPoint: string;
export declare const devEntryPoints: string[];
export declare const managedEntryPoints: string[];
export declare const unmanagedEntryPoints: string[];
export declare const shims: string[];
export declare function isLoaderEntryPoint(entryPoint: string): boolean;
export declare function isRunWorkerForTarget(entryPoint: string, target: BuildTarget): boolean;
export declare function getRunWorkerForTarget(target: BuildTarget): string;
export declare function isRunControllerForTarget(entryPoint: string, target: BuildTarget): boolean;
export declare function getRunControllerForTarget(target: BuildTarget): string | undefined;
export declare function isIndexWorkerForTarget(entryPoint: string, target: BuildTarget): boolean;
export declare function getIndexWorkerForTarget(target: BuildTarget): string;
export declare function isIndexControllerForTarget(entryPoint: string, target: BuildTarget): boolean;
export declare function getIndexControllerForTarget(target: BuildTarget): string | undefined;
export declare function isInitEntryPoint(entryPoint: string, triggerDirs: string[]): boolean;
