@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 408 B
TypeScript
import React from 'react';
import { DoctorExpertiseType } from "./index";
export declare const DoctorExpertiseContext: React.Context<DoctorExpertiseType>;
export type DoctorExpertiseProps = {
children: React.ReactNode;
value: DoctorExpertiseType;
};
declare const DoctorExpertiseProvider: ({ children, value }: DoctorExpertiseProps) => React.JSX.Element;
export { DoctorExpertiseProvider };