import { SvelteComponentTyped } from "svelte"; import { TitleSize, TitleTag } from './title.enums'; import { Position } from '../../../enums'; declare const __propDef: { props: { /** * The id for the title * @type {string} */ id?: string | null | undefined; /** * The HTML tag to use for the title * @type {TitleTag} */ tag?: TitleTag | undefined; /** * The size of the title * @type {TitleSize} */ size?: TitleSize | undefined; /** * The overline text to display * @type {string} */ overline?: string | undefined; /** * The subtitle text to display * @type {string} */ subtitle?: string | undefined; darkmode?: boolean | undefined; /** * The position of the title * @type {Position} */ position?: Position | undefined; /** * Title to display * @type {string} */ title: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type TitleProps = typeof __propDef.props; export type TitleEvents = typeof __propDef.events; export type TitleSlots = typeof __propDef.slots; export default class Title extends SvelteComponentTyped { } export {};