import React from 'react';
import { IProps, HTMLDivProps } from '@uiw/utils';
export interface TabsPaneProps extends IProps, HTMLDivProps {
label?: React.ReactNode;
disabled?: boolean;
}
declare const _default: (props?: TabsPaneProps) => React.JSX.Element;
export default _default;