import * as React from 'react'; import { TabPanelProps as ReakitTabPanelProps } from 'reakit'; import { BoxProps } from '../Box'; export declare type LocalTabsPanelProps = { tabId?: string; }; export declare type TabsPanelProps = BoxProps & Partial & LocalTabsPanelProps; export declare const TabsPanel: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };