export type SchemaValueError = string | SchemaValuePropertyError | SchemaValueIndexError;
export type SchemaValuePropertyError = {
    property: string;
    errors: SchemaValueError[];
};
export declare function isSchemaValuePropertyError(value: SchemaValueError): value is SchemaValuePropertyError;
export type SchemaValueIndexError = {
    index: number;
    errors: SchemaValueError[];
};
export declare function isSchemaValueIndexError(value: SchemaValueError): value is SchemaValueIndexError;
export type SchemaValuesValidationResponse = {
    errors: SchemaValueError[];
    valid: boolean;
};
export declare function isNotStringError(value: SchemaValueError): value is SchemaValuePropertyError | SchemaValueIndexError;
