import React from 'react'; export interface FmlTabsContextState { activeTab: string | undefined; selectTab: (tab: string) => boolean; } export declare const FmlTabsContext: React.Context;