9 lines
260 B
TypeScript
9 lines
260 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface StepProps extends HTMLChakraProps<"div"> {
|
|
}
|
|
declare const Step: _chakra_ui_system.ComponentWithAs<"div", {}>;
|
|
|
|
export { Step, StepProps };
|