import React from 'react';
import { TabsProps } from '../../../../packages/core/components/Tabs';
interface Props {
}
declare type State = Readonly<{
    controlled: string;
}>;
declare class TabsDemo extends React.PureComponent<Props, State> {
    state: {
        controlled: string;
    };
    handleChange: TabsProps['onChange'];
    render(): React.ReactNode;
}
export { TabsDemo as default };
