import { type CommentSpecifier } from '@pnpm/text.comments-parser';
import { type ProjectManifest } from '@pnpm/types';
export declare function writeProjectManifest(filePath: string, manifest: ProjectManifest, opts?: {
    comments?: CommentSpecifier[];
    indent?: string | number | undefined;
    insertFinalNewline?: boolean;
}): Promise<void>;
