import React from 'react'; import { DoctorExpertiseType } from "./index"; export declare const DoctorExpertiseContext: React.Context; export type DoctorExpertiseProps = { children: React.ReactNode; value: DoctorExpertiseType; }; declare const DoctorExpertiseProvider: ({ children, value }: DoctorExpertiseProps) => React.JSX.Element; export { DoctorExpertiseProvider };