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