import { Category } from './Category'; import { Property } from './Property'; export declare class Schema { _id: string; id: string; name: string; properties: Property[]; categories: Category[]; constructor(options?: any); }