import type { TShipManifest } from './ship.types';
/**
 * The npm package manifest (package.json)
 */
export interface Manifest {
    name: string;
    version: string;
    description: string;
    [key: string]: unknown;
}
export declare function getManifest(file: string): TShipManifest;
/**
 * Determines whether the specified value is a package manifest.
 */
export declare function isManifest(obj: any): obj is Manifest;
