import type { BaseApiClient } from '../../types/api';
import type { UseEssayStudentDetailsReturn } from './types';
/**
 * Hook for fetching essay student details
 * Returns student info, overall average, performance classification, and 5 competencies
 *
 * @param api - API client with post method
 *
 * @example
 * ```tsx
 * const { data, loading, error, fetchDetails, reset } = useEssayStudentDetails(api);
 *
 * fetchDetails({
 *   userInstitutionId: 'uuid',
 *   period: '1_MONTH',
 * });
 * ```
 */
export declare function useEssayStudentDetails(api: BaseApiClient): UseEssayStudentDetailsReturn;
//# sourceMappingURL=useEssayStudentDetails.d.ts.map