import type { BlueprintError } from '../types/errors';
/**
 * Executes the given validator function and throws a formatted error if any are returned.
 * @param validator A function that returns a list of validation errors.
 */
export declare function runValidation(validator: () => BlueprintError[]): void;
