import { IGetSchema } from '../../protocols'; import { IParseNestedSchemas } from '../../protocols/parse-nested-schemas'; export declare class JoiParseNestedStructure implements IParseNestedSchemas { readonly getSchema: IGetSchema.Any; constructor(getSchema: IGetSchema.Any); parseSchema: (schema: any) => any; parseRules: (shape: any) => any; getParsedItem: (schemaOrRule: any) => any; }