import { ResponseDirective, ResponseDirectiveOptions } from './ResponseDirective'; export declare class RawDirective extends ResponseDirective { options: RawDirectiveOptions; constructor(value: T, options?: Partial); } export interface RawDirectiveOptions extends ResponseDirectiveOptions { contentType?: string; } /** * Returns a `RawDirective` object */ export declare function raw(value: T, options?: Partial): RawDirective; //# sourceMappingURL=RawDirective.d.ts.map