import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * Specifies the variant of text. */ variant: "body" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "label"; /** * Specifies whether to remove the default margin. */ nomargin?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type TypographyProps = typeof __propDef.props; export declare type TypographyEvents = typeof __propDef.events; export declare type TypographySlots = typeof __propDef.slots; export default class Typography extends SvelteComponentTyped { } export {};