export type MetadataConfigKey = "branchName" | "commitMessage" | "pullRequest"; export interface RepoRootResolver { resolveRepoRoot: (cwd: string) => Promise; } export interface BuildMetadataPromptOptions { cwd: string; configKey: MetadataConfigKey; before: string; after: string; trailing?: string; workspaceGitService?: RepoRootResolver; } export declare function buildMetadataPrompt(options: BuildMetadataPromptOptions): Promise; //# sourceMappingURL=build-metadata-prompt.d.ts.map