import Step from "./step"; import { type StepsProps } from "./steps"; export type { StepsThemeVars } from "./steps.shared"; interface StepsInterface { (props: StepsProps): JSX.Element; Step: typeof Step; } declare const Steps: StepsInterface; export default Steps;