import React from 'react';
export interface TabbarContext {
    selectIndex: number;
    inactiveColor: string;
    activeColor: string;
    handleClick: (value: number) => void;
}
declare const _default: React.Context<TabbarContext | null>;
export default _default;
