import React from "react"; import { type VibeComponentProps } from "../../types"; import { type ElementContent } from "../../types/ElementContent"; export interface TipseenBasicContentProps extends VibeComponentProps { /** * The title text displayed in the Tipseen content. */ title?: string; /** * Class name applied to the title. */ titleClassName?: string; /** * The content inside the Tipseen. */ children?: ElementContent | ElementContent[]; } declare const TipseenBasicContent: React.FC; export default TipseenBasicContent;