/** * Drop invalid inbound DOB strings — return undefined when the string fails * `getDateOfBirthErrorMessages`. Used by `transformInbound` for the account * holder, regarded owner, and each controlling person so the questionnaire * never loads with a malformed date already in state. */ export declare const validDateOfBirth: (raw: string | undefined) => string | undefined;