type Subheading = 'cloud' | 'studio' | 'services' | 'sports' | 'development'; type Variant = 'mono' | 'standard'; type Props = { /** Render only the brand mark, no wordmark. @default false */ mark?: boolean; /** Sub-product name appended after Streams. @default null */ subheading?: Subheading | null; /** * Color treatment. * - `mono`: every path inherits `currentColor`. Compose with the parent's CSS color. * - `standard`: brand-canonical two-tone — mark in `--sc-kit--color--accent`, wordmark in `--sc-kit--color--text--primary`. * @default 'mono' */ variant?: Variant; /** Accessible label. @default 'Streams' */ ariaLabel?: string; }; /** * Logo — the StreamsCloud brand mark, optionally locked up with the "Streams" * wordmark and a sub-product name. Renders inline SVG using `currentColor`, so * the consumer sets color via the parent's CSS `color` property. * * Examples: * mark + Streams, inherits color * + Cloud subheading * mark only * * Wrap in a colored container to set the fill: *
* *
*/ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;