import { StepStatus } from '../Stepper'; import { IconType } from '../../atoms/Icon/types'; export declare const timeLineVariants: (props?: ({ variant?: "default" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type TimelineEvent = { id: string; status: StepStatus; Icon: IconType; title?: string; author?: string; date?: string; description?: string; }; export type TimelineProps = { timeline: Array; }; //# sourceMappingURL=types.d.ts.map