UNPKG

@hhgtech/hhg-components

Version:
13 lines (12 loc) 544 B
import { ForwardRefExoticComponent } from 'react'; import { BoxProps } from '@mantine/core'; import { Banner } from "./banner"; import { Body } from "./body"; import { CardWrapperContextType } from "./context"; export type HealthToolFormWrapperProps = CardWrapperContextType & BoxProps; export interface CompoundedComponent extends ForwardRefExoticComponent<HealthToolFormWrapperProps> { Body: typeof Body; Banner: typeof Banner; } declare const HealthToolCardWrapper: CompoundedComponent; export { HealthToolCardWrapper };