import type { Schema } from '../../../schema/index.js';
import { SchemaAction } from '../../../schema/index.js';
import type { FormattedValueJSONSchema } from './formattedValue/index.js';
export declare class JSONSchemer<SCHEMA extends Schema = Schema> extends SchemaAction<SCHEMA> {
    static actionName: "jsonSchemer";
    formattedValueSchema(): FormattedValueJSONSchema<SCHEMA>;
}
