import { SvelteComponentTyped } from "svelte"; import { TitleSize, TitleTag } from '../../atoms/title'; import { TextSectionVariant } from './text-section.enums'; import { Direction } from '../../../enums'; declare const __propDef: { props: { /** * The title id */ id?: string | null | undefined; /** * The title tag to use * @type {TitleTag} */ titleTag?: 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; /** * Title to display * @type {string} */ title: string; /** * Description to display * @type {string} */ description?: string | undefined; /** * Buttons to display * @type {ComponentProps