import { StringInterpolationScheme } from './string-interpolator'; /** * A url {@link StringInterpolationScheme} expression that will match any common url parameter * notation styled values in the form of `:parameter` while capturing the actual "context" property * name `parameter` inside the first expression group */ export declare const URL_PARAM_INTERPOLATION_SCHEME: StringInterpolationScheme; /** * A unix {@link StringInterpolationScheme} expression that will match any common unix variable * notation styled values in the form of `$parameter` while capturing the actual "context" property * name `parameter` inside the first expression group */ export declare const UNIX_VAR_INTERPOLATION_SCHEME: StringInterpolationScheme; /** * A DOS {@link StringInterpolationScheme} expression that will match any common DOS variable * notation styled values in the form of `%parameter%` while capturing the actual "context" property * name `parameter` inside the first expression group */ export declare const DOS_VAR_INTERPOLATION_SCHEME: StringInterpolationScheme;