import type { GlobalProps } from '../../shared/model.js'; export type DBTabPanelDefaultProps = { /** * The content if you don't want to use children. */ content?: string; /** * If the panel is hidden. */ hidden?: boolean; }; export type DBTabPanelProps = DBTabPanelDefaultProps & Omit;