import { ISchemaTypeOpts } from '../SchemaDefinition';
export default class FieldDefinition {
    static generateId(): string;
    _id: string;
    name: string;
    type: string;
    props?: ISchemaTypeOpts<any>;
    constructor(field?: Partial<FieldDefinition>);
}
