import { ParamValueModel } from "@odata2ts/converter-api";
import { QParam } from "../QParam";
import { UrlExpressionValueModel, UrlValueModel } from "../UrlParamModel";
export declare class QStringNumberV2Param<ConvertedType = string> extends QParam<string, ConvertedType> {
    protected getTypeSuffix(): string | undefined;
    getUrlConformValue: (value: ParamValueModel<UrlExpressionValueModel>) => UrlValueModel;
    parseValueFromUrl: (urlConformValue: UrlValueModel) => ParamValueModel<string>;
}
