/** * Parse + validate scene JSON in one step. */ import type { SceneJSON } from '../../types'; import type { ValidationResult, ValidateSceneOptions } from './types'; /** * Parse a JSON string and validate it as Scene JSON. * Parse failures include line/column + caret; schema failures include paths + expected values. */ export declare function parseAndValidateSceneJSON(raw: string, options?: ValidateSceneOptions): { json: SceneJSON | null; validation: ValidationResult; };