/** * A = control group * * B = test group */ export type CueGroup = 'a' | 'b'; /** * A = control group * * B = test group */ export declare const generateCueGroup: (userId: string) => CueGroup | undefined;