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 {};
