import { FileActionPlan, type PracticeDeclaration, type ProjectVariablesImplementation } from '../../../domain.objects'; /** * get the plans required to make a project follow the declared practices */ export declare const getPlansForProject: ({ practices, projectRootDirectory, projectVariables, }: { practices: PracticeDeclaration[]; projectRootDirectory: string; projectVariables: ProjectVariablesImplementation; }) => Promise;