import React from "react"; export interface TimelinePinProps extends React.HTMLAttributes { /** * Date position for the pin. */ date: Date; /** * Content in Pin Popover. */ children?: React.ReactNode; } export declare const PinInternal: React.ForwardRefExoticComponent>; export default PinInternal;