@abgov/react-components
Version:
Government of Alberta - UI components for React
19 lines (18 loc) • 538 B
TypeScript
import { GoabFormStepStatus } from '@abgov/ui-components-common';
interface WCProps {
text: string;
status?: GoabFormStepStatus;
}
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"goa-form-step": WCProps & React.HTMLAttributes<HTMLElement>;
}
}
}
export interface GoabFormStepProps {
text: string;
status?: GoabFormStepStatus;
}
export declare function GoabFormStep(props: GoabFormStepProps): import("react/jsx-runtime").JSX.Element;
export default GoabFormStep;