import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; black?: boolean; center?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type DescriptionProps = typeof __propDef.props; export declare type DescriptionEvents = typeof __propDef.events; export declare type DescriptionSlots = typeof __propDef.slots; export default class Description extends SvelteComponentTyped { } export {};