import React from 'react';
import { Row } from '@sage-bionetworks/synapse-types';
import dayjs from 'dayjs';
import { ObservationCardSchema } from '../row_renderers/ObservationCard';
export declare const getMaxDate: (timepoints: dayjs.Dayjs[]) => dayjs.Dayjs;
type TimelinePhaseProps = {
    name: string;
    color: string;
    rowData: Row[];
    schema: ObservationCardSchema;
    widthPx: number;
    sql: string;
};
declare const TimelinePhase: ({ color, rowData, schema, widthPx, sql, }: TimelinePhaseProps) => React.ReactNode;
export default TimelinePhase;
//# sourceMappingURL=TimelinePhase.d.ts.map