1 | import * as React from 'react';
|
2 | import { StandardProps } from '@material-ui/core';
|
3 |
|
4 | export interface TimelineConnectorProps extends StandardProps<{}, TimelineConnectorClassKey> {
|
5 | /**
|
6 | * The content of the component.
|
7 | */
|
8 | children?: React.ReactNode;
|
9 | }
|
10 |
|
11 | export type TimelineConnectorClassKey = 'root';
|
12 |
|
13 | /**
|
14 | *
|
15 | * Demos:
|
16 | *
|
17 | * - [Timeline](https://mui.com/components/timeline/)
|
18 | *
|
19 | * API:
|
20 | *
|
21 | * - [TimelineConnector API](https://mui.com/api/timeline-connector/)
|
22 | */
|
23 | export default function TimelineConnector(props: TimelineConnectorProps): JSX.Element;
|