@edgex-web/components
Version:
EdgeX Universal UI Components Library - Reusable React components for deposit, withdraw and other common UI patterns
16 lines (15 loc) • 536 B
TypeScript
import { default as React } from 'react';
interface TabsContextValue {
activeValue: string | null;
setActiveValue: (v: string) => void;
activationMode: 'auto' | 'manual';
orientation: 'horizontal' | 'vertical';
idPrefix: string;
order: string[];
register: (value: string) => void;
unregister: (value: string) => void;
}
export declare const TabsContext: React.Context<TabsContextValue | null>;
export declare const useTabsContext: () => TabsContextValue;
export {};
//# sourceMappingURL=context.d.ts.map