/**
 * Returns true if and only if exactly one item from each
 * of the "groups" arrays appears in the "sample" array.
 */
export declare function samplesEach<T>(sample: T[], groups: T[][]): boolean;
