import type { SpanProps } from "../../types";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [SpanProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2142)
 * ## Props
 * @prop children
 * @prop class: className
 * @prop italic
 * @prop underline
 * @prop linethrough
 * @prop uppercase
 * @prop gradient
 * @prop highlight
 * @prop decoration
 * @prop decorationColor
 * @prop decorationThickness
 * @prop ...restProps
 */
declare const Span: import("svelte").Component<SpanProps, {}, "">;
type Span = ReturnType<typeof Span>;
export default Span;
