/**
 * @deprecated Use actions/sanity/projects.js instead
 */
export * as projects from '../sanity/projects.js';
export * as assets from './assets.js';
export * as blueprint from './blueprint.js';
export * as config from './config.js';
export * as logs from './logs.js';
export * as resources from './resources.js';
export * as stacks from './stacks.js';
import type { BlueprintParserError } from '../../utils/types.js';
export type BlueprintIssue = {
    code: 'NO_STACK_ID' | 'NO_SCOPE_TYPE' | 'NO_SCOPE_ID' | 'NO_STACK' | 'PARSE_ERROR';
    message: string;
    errors?: BlueprintParserError[];
};
