import type { DesignResourceAuthorityProjection, DesignResourceRecoveryCheckpoint, DesignResourceRecoveryCreateInput } from "./design-resource-recovery-types.js"; type RecoveryState = DesignResourceRecoveryCreateInput | DesignResourceRecoveryCheckpoint; export declare function validateDesignResourceAuthoritySourceItems(repository: string, state: RecoveryState): Promise; export declare function parseAuthorityProjections(sourcePath: string, itemKey: string, normalizedText: string): DesignResourceAuthorityProjection[]; export {};