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;
