/// import type { IApplicationSummary } from '../service/ApplicationReader'; export interface IApplicationTableProps { applications: IApplicationSummary[]; currentSort: string; toggleSort: (column: string) => void; } export declare const ApplicationTable: ({ currentSort, toggleSort, applications }: IApplicationTableProps) => JSX.Element;