import React from "react"; import type VibeComponentProps from "../../types/VibeComponentProps"; export interface ListTitleProps extends VibeComponentProps { /** * The tab index for keyboard navigation. */ tabIndex?: number; /** * The title text. */ children?: string; } declare const ListTitle: React.FC; export default ListTitle;