import { CmsEntryOpenSearchFieldIndex } from "../abstractions/CmsEntryOpenSearchFieldIndex.js";
declare class JsonFieldIndexImpl implements CmsEntryOpenSearchFieldIndex.Interface {
    readonly fieldType = "json";
    toIndex({ value }: CmsEntryOpenSearchFieldIndex.ToIndex): CmsEntryOpenSearchFieldIndex.ToValue;
    fromIndex({ rawValue }: CmsEntryOpenSearchFieldIndex.FromIndex): any;
}
export declare const JsonFieldIndex: typeof JsonFieldIndexImpl & {
    __abstraction: import("@webiny/di").Abstraction<import("../abstractions/CmsEntryOpenSearchFieldIndex.js").ICmsEntryOpenSearchFieldIndex>;
};
export {};
