/** Default value for project steering paths. */ export declare const DEFAULT_PROJECT_STEERING_PATHS: { readonly instructions: readonly ["AGENTS.md"]; readonly skills: readonly ["skills", ".veryfront/skills"]; }; /** Shared project steering file mutation tool names value. */ export declare const PROJECT_STEERING_FILE_MUTATION_TOOL_NAMES: readonly ["create_file", "update_file", "delete_file", "move_file"]; /** Public API contract for project steering paths. */ export type ProjectSteeringPaths = { instructions: readonly string[]; skills: readonly string[]; }; /** Input payload for project steering mutation. */ export type ProjectSteeringMutationInput = { toolName: string; toolInput: Record; activeProjectId?: string | null; activeBranchId?: string | null; steeringPaths?: ProjectSteeringPaths; }; /** Result returned from project steering mutation. */ export type ProjectSteeringMutationResult = { instructionsChanged: boolean; skillsChanged: boolean; }; /** Return project steering mutation. */ export declare function getProjectSteeringMutation(input: ProjectSteeringMutationInput): ProjectSteeringMutationResult; /** Result returned from is successful project steering mutation. */ export declare function isSuccessfulProjectSteeringMutationResult(result: unknown): boolean; //# sourceMappingURL=steering-mutation.d.ts.map