import type React from 'react';
interface WorklogEntry {
    tempoId?: string;
    jiraId?: string;
    issueKey: string;
    timeSpentSeconds: number;
    summary: string;
    source?: 'tempo' | 'jira';
}
interface WorklogTableProps {
    worklogs: WorklogEntry[];
    title?: string;
    showTempoId?: boolean;
    showJiraId?: boolean;
    showSource?: boolean;
}
export declare const WorklogTable: React.FC<WorklogTableProps>;
export {};
//# sourceMappingURL=WorklogTable.d.ts.map