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 { Body: typeof Body; Banner: typeof Banner; } declare const HealthToolCardWrapper: CompoundedComponent; export { HealthToolCardWrapper };