import { ValueToValidateData } from './types'; /** * Return valueState when valueProp is undefined * @param {string | null | undefined} valueProp - MaskedInput value in prop * @param {string} valueState - MaskedInput value in state * * @returns {string} Value */ export declare const getValue: (valueProp: string | null | undefined, valueState: string) => string; /** * Any value that is not complete should be considered as empty and invalid * @param {string} value - MaskedInput value (empty until mask is filled) * @param {InputValueType | undefined} inputValue - Value that user sees in input field (with mask chars) * * @returns {string} Value to validate */ export declare const getValueToValidate: ({ value, inputValue, }: ValueToValidateData) => string;