import React from 'react'; import { BoxProps } from '../internals/Box'; export interface TimelineItemProps extends BoxProps { /** * Whether the last item * * @internal * This props is supposed to be used only by Timeline component internally * User should never rely on this prop * * @deprecated * This prop was used to indicate whether an item is the last item so that it gets highlighted. * Now we can specify whether an item should be highlighted individually. * Use {@link INTERNAL_active} instead */ last?: boolean; /** Customizing the Timeline item */ dot?: React.ReactNode; /** The content of the component */ children?: React.ReactNode; /** You can use a custom element type for this component */ as?: React.ElementType; /** Customized time of timeline **/ time?: React.ReactNode; /** * @internal * This props is supposed to be used only by Timeline component internally * User should never rely on this prop */ INTERNAL_active?: boolean; } /** * The `Timeline.Item` component is used to set the layout of the child element in the `Timeline` component. * * @see https://rsuitejs.com/compoâ—Šnents/timeline */ declare const TimelineItem: import("../internals/types").InternalRefForwardingComponent<"div", TimelineItemProps, never> & Record; export default TimelineItem;