/// <reference types="react" />
interface TabbarContextProps {
    value?: string | number;
    onItemClick?: (value?: any) => void;
}
declare const TabbarContext: import("react").Context<TabbarContextProps>;
export default TabbarContext;
