///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
import { FSDBEntity } from '@becomes/purple-cheetah-mod-fsdb/types';
import type { ObjectSchema } from '@becomes/purple-cheetah/types';
import { Schema } from 'mongoose';
import type { BCMSProp, BCMSPropGql } from '../../prop';
export interface BCMSGroup extends FSDBEntity {
cid: string;
name: string;
label: string;
desc: string;
props: BCMSProp[];
}
export interface BCMSGroupGql extends FSDBEntity {
cid: string;
name: string;
label: string;
desc: string;
props: BCMSPropGql[];
}
export declare const BCMSGroupFSDBSchema: ObjectSchema;
export declare const BCMSGroupMongoDBSchema: Schema, {}, {}, {}, {}, "type", {
props: any[];
cid: string;
_id?: string | undefined;
name?: string | undefined;
desc?: string | undefined;
createdAt?: number | undefined;
updatedAt?: number | undefined;
label?: string | undefined;
}>;