/** * Resolve a manifest-declared path to an absolute filesystem path. * Handles public-root style inputs consistently across OS/runners: * - '/foo' => '/foo' * - '/public/foo' => '/public/foo' * - 'public/foo' => '/public/foo' * - './public/foo' => '/public/foo' * - 'foo/bar' => '/foo/bar' */ export declare function resolveManifestPath(context: string, relativePath: string): string;