/** @typedef {typeof __propDef.props} TextAlignStoryProps */ /** @typedef {typeof __propDef.events} TextAlignStoryEvents */ /** @typedef {typeof __propDef.slots} TextAlignStorySlots */ export default class TextAlignStory extends SvelteComponentTyped<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, {}> { } export type TextAlignStoryProps = typeof __propDef.props; export type TextAlignStoryEvents = typeof __propDef.events; export type TextAlignStorySlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};