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. * * @param {BodyparserBaseOptionsContract} options */ constructor(options?: BodyparserBaseOptionsContract); /** * Returns the JSON body size limit in bytes. * * @returns {String|Number} */ limit(): number; /** * Returns the allowed JSON content types * * @returns {String[]} */ contentTypes(): string[]; } export {};