UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

19 lines (18 loc) 617 B
import { ReactNode } from 'react'; import { GoabPublicFormTaskStatus } from '@abgov/ui-components-common'; interface WCProps { status?: GoabPublicFormTaskStatus; } declare module "react" { namespace JSX { interface IntrinsicElements { "goa-public-form-task": WCProps & React.HTMLAttributes<HTMLElement>; } } } type GoabPublicFormTaskProps = { status?: GoabPublicFormTaskStatus; children: ReactNode; }; export declare function GoabPublicFormTask({ status, children }: GoabPublicFormTaskProps): import("react/jsx-runtime").JSX.Element; export default GoabPublicFormTask;