ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 299 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface TourTitleProps extends HtmlIngredientProps<'h2', HTMLHeadingElement> {
}
declare const TourTitle: import("svelte").Component<TourTitleProps, {}, "ref">;
type TourTitle = ReturnType<typeof TourTitle>;
export default TourTitle;