UNPKG

hi-profiles

Version:

React components for the ABDM Health Information Profiles

14 lines (13 loc) 447 B
import { default as HIProfile } from '../utils/HIProfile'; interface IProfileContext { profile: HIProfile | null; downloadable?: boolean; } export declare function useProfile(): IProfileContext; interface IProps { bundle: fhir4.Bundle; downloadable?: boolean; children: React.ReactNode; } export default function ProfileProvider({ bundle, downloadable, children, }: IProps): import("react/jsx-runtime").JSX.Element; export {};