import { FSDBEntity } from '@becomes/purple-cheetah-mod-fsdb/types'; import type { ObjectSchema } from '@becomes/purple-cheetah/types'; export interface Feature extends FSDBEntity { name: string; nameEncoded: string; available: boolean; description?: string; releaseDate?: number; instances?: string[]; } export declare const FeatureSchema: ObjectSchema;