interface BodyparserBaseOptionsContract { limit?: number | string; contentTypes: string[]; maxFileSize?: number | string; } export declare class BodyparserBaseOptions { /** * The bodyparser base options object. */ protected readonly config: BodyparserBaseOptionsContract; /** * Create a new instance. */ constructor(options?: BodyparserBaseOptionsContract); /** * Returns the JSON body size limit in bytes. */ limit(): number; /** * Returns the allowed JSON content types */ contentTypes(): string[]; } export {};