import React from 'react';
export interface TimeLineStepProps {
    variant?: 'filled' | 'outlined';
    color?: string;
    connectorColor?: string;
    connectorHeight?: number;
    connectorWidth?: number;
    icon?: string | React.ReactNode | React.ReactElement;
    title?: string;
    subtitle?: string;
    time?: string;
    timeFormat?: string;
}
export type TimeLineStepState = string | TimeLineStepProps;
interface TimeLineProps {
    variant?: 'filled' | 'outlined';
    color?: string;
    connectorColor?: string;
    connectorHeight?: string | number;
    connectorWidth?: string | number;
    connectorStyle?: string;
    timeFormat?: string;
    right?: boolean;
    left?: boolean;
    zigzag?: boolean;
    align?: 'right' | 'left' | 'center';
    position?: any;
    steps?: Array<TimeLineStepState>;
}
declare const Timeline: React.FC<TimeLineProps>;
export default Timeline;
//# sourceMappingURL=Timeline.d.ts.map