@hhgtech/hhg-components
Version:
Hello Health Group common components
13 lines (12 loc) • 544 B
TypeScript
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 };