import { type NormalizedPackageJson } from 'read-package-up'; import * as z from 'zod/v4'; import type { ReadResult } from '../cli/configure/types.js'; export type ProjectType = z.infer; export declare const projectTypeSchema: z.ZodUnion, z.ZodLiteral<"package">]>; export declare const PROJECT_TYPES: readonly ["application", "package"]; export declare const getSkubaManifest: () => Promise; export declare const getConsumerManifest: (cwd?: string) => Promise; export declare const getManifestProperties: (prop: T) => Promise<{ value: V | undefined; type: string | undefined; path: string; } | undefined>; export declare const getStringPropFromConsumerManifest: (prop: T) => Promise; export declare const getEntryPointFromManifest: () => Promise;