@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 383 B
TypeScript
import React from 'react';
export type Props = {
legalTextType: 'community' | 'default';
trackingCategory: string;
trackingAction: string;
activeTab?: string;
errMsgPolicy?: string;
};
declare const PolicyContent: ({ legalTextType, trackingCategory, trackingAction, activeTab, errMsgPolicy, }: Props) => React.JSX.Element;
export default PolicyContent;