UNPKG

@r365/react-calendar-timeline

Version:
17 lines (16 loc) 542 B
import { HTMLProps, ReactNode } from 'react'; import { LEFT_VARIANT, RIGHT_VARIANT } from './constants'; type GetRootProps = () => HTMLProps<HTMLDivElement>; export type SidebarWrapperProps = { children?: (props: { getRootProps: GetRootProps; data: any; }) => ReactNode; variant?: typeof LEFT_VARIANT | typeof RIGHT_VARIANT; headerData?: any; }; declare const SidebarWrapper: { (props: SidebarWrapperProps): import("react/jsx-runtime").JSX.Element; secretKey: string; }; export default SidebarWrapper;