import { FieldValidationError } from './fieldValidationError';
import { Schema } from './schema';
export interface SchemaResult {
    errors?: {
        [key: string]: FieldValidationError;
    };
    schema?: {
        [key: string]: Schema;
    };
}
export declare namespace SchemaResult {
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=schemaResult.d.ts.map