import type { HtmlIngredientProps } from '../types.js';
export interface ToastTitleProps extends HtmlIngredientProps<'h2', HTMLHeadingElement> {
}
declare const ToastTitle: import("svelte").Component<ToastTitleProps, {}, "ref">;
type ToastTitle = ReturnType<typeof ToastTitle>;
export default ToastTitle;
