import type { InstallScope } from '../../platform/install/types.js'; import type { InitWorkflowSelection } from '../comet-entry/types.js'; export interface ProjectHookProjectionFailure { platform: string; reason: string; } export interface ProjectHookProjectionResult { installedPlatforms: string[]; failures: ProjectHookProjectionFailure[]; } export declare function projectCometHooksFromInstalledScope(targetProjectRoot: string, sourceBaseDir: string, sourceScope: InstallScope, workflowSelection: InitWorkflowSelection, options: { globalBaseDir: string; }): Promise; //# sourceMappingURL=project-hook-projection.d.ts.map