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