UNPKG

@hhgtech/hhg-components

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