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