10 lines
405 B
TypeScript
10 lines
405 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface StepIndicatorProps extends HTMLChakraProps<"div"> {
|
|
}
|
|
declare function StepIndicator(props: StepIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
declare function StepIndicatorContent(): react_jsx_runtime.JSX.Element;
|
|
|
|
export { StepIndicator, StepIndicatorContent, StepIndicatorProps };
|