///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
type TFeatureType = 'api-route' | 'ui-route' | 'ui-main-drawer' | 'ui-account-drawer';
interface IFeatureQuery {
_id?: string;
}
interface IFeatureUpdate {
name?: string;
}
interface IFeature {
_id?: string;
name?: string;
type?: TFeatureType;
tags?: string[];
value: string;
description?: string;
}
declare const FeatureModel: import("mongoose").Model & Omit, never>, any>;
export { IFeatureQuery, IFeatureUpdate, TFeatureType, IFeature };
export default FeatureModel;