import type { Limit, LimitType } from './models'; export declare class LimitFactory { static instance(data: { name?: string; description?: string; type?: LimitType; svalue?: string; nvalue?: number; }): Limit; }