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