/**
 * Extracts the length value out of a given datatype
 * For example: `varchar(32)` => 32
 */
export default function extractMaxLength(type: string): null | number;
