import { ComponentSchema } from './DocumentEditor/component-blocks/api'; import { ReadonlyPropPath } from './DocumentEditor/component-blocks/utils'; import { Relationships } from './DocumentEditor/relationship'; export declare class PropValidationError extends Error { path: ReadonlyPropPath; constructor(message: string, path: ReadonlyPropPath); } export declare function validateComponentBlockProps(schema: ComponentSchema, value: unknown, relationships: Relationships, path: ReadonlyPropPath): any;