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