import type { Mask } from './maskTypes';
/**
 * Takes a formatted value and converts it back into a pure value by stripping the non-input /
 * non-included characters in a given {@link Mask}.
 *
 * This is the inverse of {@link matchAgainstMask}.
 *
 * @see matchAgainstMask
 */
export declare const displayValueToPureValue: (displayValue: string, mask: Mask) => string;
