import type { FC, PropsWithChildren } from "react"; import { KeepColors, KeepSizes } from "../../Keep/KeepTheme"; export type StepProps = PropsWithChildren<{ className?: string; horizontal?: boolean; withBg?: boolean; withRing?: boolean; withBorder?: boolean; borderType?: "solid" | "dashed"; color?: keyof StepPointColor; stepPointSize?: keyof StepPointSizes; ringType?: "ring-2" | "ring-4"; ringTypeColor?: "light" | "deep"; }>; export interface StepPointSizes extends Pick { [key: string]: string; } export interface StepPointColor extends Pick { [key: string]: string; } export declare const Step: FC & { Item: FC; Point: FC; Content: FC; Title: FC; Body: FC; };