import type { BaseApiClient } from '../../types/api';
export interface SimulationsPageProps {
    /** API client used to fetch students and simulations */
    readonly api: BaseApiClient;
    /** Image shown when a search returns no results */
    readonly noSearchImage?: string;
}
/**
 * Teacher-facing simulations page: a paginated list of students with how many
 * simulations each answered, plus a "Ver simulados" action that opens a nested
 * detail modal.
 */
export declare function SimulationsPage({ api, noSearchImage }: SimulationsPageProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=SimulationsPage.d.ts.map