type BitrateUnit = 'k' | 'K' | 'M';

export type Bitrate = `${number}${BitrateUnit}`;
