Files
wdi-dashboard/node_modules/@chakra-ui/stepper/dist/step-status.d.ts
2024-08-16 15:06:52 +05:30

12 lines
469 B
TypeScript

import * as react_jsx_runtime from 'react/jsx-runtime';
import { StepStatusType, StepContext } from './step-context.js';
import '@chakra-ui/system';
import 'react';
type MaybeRenderProp = React.ReactNode | ((props: StepContext) => React.ReactNode);
interface StepStatusProps extends Partial<Record<StepStatusType, MaybeRenderProp>> {
}
declare function StepStatus(props: StepStatusProps): react_jsx_runtime.JSX.Element | null;
export { StepStatus, StepStatusProps };