import { WidgetNoteProps } from './types'; /** * Displays text content with markdown support and automatic show more/less functionality for long content. Automatically detects content exceeding 3 lines and shows an expand/collapse button. * * @example * ```tsx * * {"**Important:** This data is from Q4 2024."} * * ``` */ export declare function WidgetNote({ children, labels, }: WidgetNoteProps): import("react/jsx-runtime").JSX.Element | null;