import { Except } from '@quenk/noni/lib/control/error'; import { Transform } from './'; /** * Json type. */ export type Json = string; /** * JSONTransform */ export declare class JSONTransform implements Transform { type: string; apply(body: object): Except; }