import React from 'react'; interface TabContentType { id: string; value: string; className?: string; role: string; children?: React.ReactElement; } export type { TabContentType };