export declare const tryRequirePkg: (pkg: string) => T | undefined; export declare const isTsAvailable: () => boolean; export declare const isAngularAvailable: () => boolean; export declare const isMdxAvailable: () => boolean; export declare const isReactAvailable: () => boolean; export declare const isSvelteAvailable: () => boolean; export declare const isVueAvailable: () => boolean; export declare const tryGlob: (paths: string[], options?: string | { absolute?: boolean; baseDir?: string; ignore?: [string]; }) => string[]; export declare const identify: (_: T) => _ is Exclude; export declare const arrayify: ? NonNullable : NonNullable>(...args: Array) => R[]; export declare const getPackageManager: () => "pnpm" | "yarn" | "bun" | "npm" | undefined; export declare const getScriptRunner: () => "npx" | "pnpm" | "yarn" | "bun" | undefined; export declare const getScriptExecutor: () => "npx" | "pnpx" | "yarn dlx" | "bunx" | undefined;