import type { ReactNode } from "react"; import type { colors } from "../generic"; /** * This file contains the types and prop-types for Timeline components. */ export type className = string; export type children = ReactNode; export type color = "white" | colors; export type variant = "filled" | "outlined" | "ghost" | "gradient"; export declare const propTypeClassName: any; export declare const propTypeChildren: any; export declare const propTypeColor: any; export declare const propTypeVariant: any; //# sourceMappingURL=timeline.d.ts.map