import type { CategoryConfig } from '../CheckBoxGroup/index';
/**
 * Student data extracted from category selection
 */
export interface ExtractedStudent {
    studentId: string;
    userInstitutionId: string;
}
/**
 * Extract selected students from the students category
 * @param categories - Array of category configurations from CheckBoxGroup
 * @returns Array of extracted student data with userInstitutionId
 */
export declare function extractStudentsFromCategories(categories: CategoryConfig[]): ExtractedStudent[];
//# sourceMappingURL=extractStudentsFromCategories.d.ts.map