import { SvelteComponentTyped } from "svelte"; import type { TypographyElement } from './types'; declare const __propDef: { props: { el?: TypographyElement | undefined; margin?: string | undefined; classes?: string | undefined; }; events: { click: MouseEvent; keypress: KeyboardEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type TypographyProps = typeof __propDef.props; export type TypographyEvents = typeof __propDef.events; export type TypographySlots = typeof __propDef.slots; export default class Typography extends SvelteComponentTyped { } export {};