import { FSDBEntity } from '@becomes/purple-cheetah-mod-fsdb/types'; import type { ObjectSchema } from '@becomes/purple-cheetah/types'; export type LimitType = 'string' | 'number'; export interface Limit extends FSDBEntity { name: string; description?: string; type: LimitType; svalue?: string; nvalue?: number; } export declare const LimitSchema: ObjectSchema;