import { FileActionPlan, PracticeDeclaration, ProjectVariablesImplementation } from '../../../domain';
/**
 * 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<FileActionPlan[]>;
