import { type Identity } from '@byted-apaas/cli-core-sdk'; export interface ComponentRepairOptions { dryRun: boolean; workspaceRoot: string; cwd: string; identity: Identity; namespace: string; } export interface ComponentRepairResult { shouldRepairs: string[]; } export declare function componentRepair(options: ComponentRepairOptions): Promise;