import React from 'react';
interface Props {
    label: string | React.ReactNode;
    value?: string;
    disabled?: boolean;
}
declare const defaultProps: {
    disabled: boolean;
};
export declare type TabsItemProps = Props & typeof defaultProps;
declare const _default: React.ComponentType<Partial<{
    disabled: boolean;
}> & Pick<React.PropsWithChildren<TabsItemProps>, "label" | "children" | "value">>;
export default _default;
