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