import { type RunAddPostMetaCommandOptions } from './cli-add-shared.js'; /** * Scaffold a typed WordPress post-meta contract and matching PHP registration. */ export declare function runAddPostMetaCommand({ cwd, hideFromRest, metaKey, postMetaName, postType, typeName }: RunAddPostMetaCommandOptions): Promise<{ metaKey: string; phpFile: string; postMetaSlug: string; postType: string; projectDir: string; schemaFile: string; showInRest: boolean; sourceTypeName: string; typesFile: string; }>;