import type { ComponentProps, FC } from "react"; import { Stack } from "../Stack/Stack"; type Props = { /** * Sets the lineStyle to be either solid or dashed. * Can be set to "dashed" to indicate an incomplete duration like the first week of a moment or "solid" for a complete duration. * * @default "solid" */ lineStyle?: "solid" | "dashed" | null; /** * The style of the dot, no dot will be rendered when this is not set. * Can be set to "empasised" to indicate special moments in the timeline like the day or week of the moment or "regular" for other moments. */ dotStyle?: "regular" | "emphasized" | null; } & ComponentProps; export declare const TimelineCardLayout: FC; export {};