export declare const RUNTIME_ERRORS: { readonly BUN_RUNTIME_REQUIRED: "Bun runtime is required"; }; type RuntimeBun = typeof Bun; export declare function getBunRuntime(): RuntimeBun | undefined; export declare function getRequiredBunRuntime(): RuntimeBun; export declare function getRuntimeArgv(): string[]; export declare function isDevelopmentRuntime(): boolean; export declare function isProductionRuntime(): boolean; export declare function runtimeHash(content: string | Buffer): number | bigint; export {};