export type Value = string | number | boolean | undefined | null;
export type ValueReplacer<V extends Value> = (value: V) => V;
export type ValueReplacements = {
    href: ValueReplacer<string>;
};
export declare const defaultValueReplacements: ValueReplacements;
