import { RawObjectSchema } from "./schema-raw"; /** * Sanitize function. Takes an object and forces it * to match the specific schema. * @param object Object to sanitize * @param schema Schema to apply */ export declare function sanitizeObject(object: any, schema: RawObjectSchema, parentStack?: RawObjectSchema[], currentRecursion?: number): any;