/** * Wordmark - CREATE SOMETHING Text Mark * * The brand wordmark with support for multiple sizes, layouts, * taglines, and reveal animations with word stagger. * * "Weniger, aber besser" - Dieter Rams * * @example * * * */ import type { WordmarkProps } from '../types.js'; interface Props extends WordmarkProps { } declare const Wordmark: import("svelte").Component; type Wordmark = ReturnType; export default Wordmark;