import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * html tag to be used */ tag: string; /** * toggles on heading1 style */ heading1?: boolean | undefined; /** * toggles on heading2 style */ heading2?: boolean | undefined; /** * toggles on heading3 style */ heading3?: boolean | undefined; /** * toggles on heading4 style */ heading4?: boolean | undefined; /** * toggles on heading5 style */ heading5?: boolean | undefined; /** * toggles on heading6 style */ heading6?: boolean | undefined; /** * toggles on subtitle style */ subtitle?: boolean | undefined; /** * toggles on body style */ body?: boolean | undefined; /** * toggles on body2 style */ body2?: boolean | undefined; /** * toggles on buttons style */ buttons?: boolean | undefined; /** * toggles on caption style */ caption?: boolean | undefined; /** * object that will spread additional attributes need for the html tag */ attributes?: object | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type TextProps = typeof __propDef.props; export type TextEvents = typeof __propDef.events; export type TextSlots = typeof __propDef.slots; /** * Text * * Component to display prestyled text based on the styles in the global stylesheet * * Props: * - tag (string): html tag to be used * - heading1 (boolean): toggles on heading1 style * - heading2 (boolean): toggles on heading2 style * - heading3 (boolean): toggles on heading3 style * - heading4 (boolean): toggles on heading4 style * - heading5 (boolean): toggles on heading5 style * - heading6 (boolean):toggles on heading6 style * - subtitle (boolean): toggles on subtitle style * - body (boolean): toggles on body style * - body2 (boolean): toggles on body2 style * - buttons (boolean): toggles on buttons style * - caption (boolean): toggles on caption style * - attributes (object): object that will spread additional attributes need for the html tag */ export default class Text extends SvelteComponentTyped { } export {};