import { QParam } from "../QParam";
import { formatParamWithQuotes, parseWithQuotes } from "../UrlParamHelper";
export declare class QStringParam<ConvertedType = string> extends QParam<string, ConvertedType> {
    protected getUrlConformValue: typeof formatParamWithQuotes;
    protected parseValueFromUrl: typeof parseWithQuotes;
}
