UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 476 B
import React from 'react'; import { PwgInfo } from "../../../../together/interfaces/types"; import { PWGFormProps } from "../../healthTools/form/pwgForm"; import { HealthToolFormWrapperProps } from "../../healthTools/formWrapper"; export type PWGCardEmbedProps = { pwgContent?: PwgInfo; formProps?: PWGFormProps; } & HealthToolFormWrapperProps; export declare const PWGCardEmbed: ({ pwgContent, formProps, ...props }: PWGCardEmbedProps) => React.JSX.Element;