/**
 * Age Range Constants
 * Used for user filtering by age ranges
 */

/**
 * Default minimum age for filtering
 */
export const DEFAULT_MIN_AGE = 0;

/**
 * Default maximum age for filtering (upper bound)
 */
export const DEFAULT_MAX_AGE = 200;

/**
 * Default minimum age for parental consent when the DOB question config does not specify one.
 */
export const DEFAULT_PARENTAL_CONSENT_MIN_AGE = 16;

/**
 * Default maximum age for parental consent when the program does not specify childMaxAge.
 */
export const DEFAULT_PARENTAL_CONSENT_MAX_AGE = 18;
