import * as $dara from '@darabonba/typescript'; export declare class WindowLimit extends $dara.Model { /** * @remarks * The duration of the time window in seconds. * * This parameter is required. * * @example * 60 */ durationSecs?: number; /** * @remarks * The maximum requests allowed within the time window. * * This parameter is required. * * @example * 100 */ limit?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }