type SourcegraphLogoVariance = 'light' | 'dark'; import type { HTMLImgAttributes } from 'svelte/elements'; interface Props extends HTMLImgAttributes { variant?: SourcegraphLogoVariance; } /** * Renders the Sourcegraph logo, pictogram with company name. * * When neither `width` nor `height` is provided the logo will be rendered at its default size. * If either is provided the other will be left undefined so that the aspect ratio is preserved. * * If the logo is used in a context where layout shift is a concern it is recommended to specify * both `width` and `height` or neither. * * The logo will automatically scale-down to fit into its container. */ declare const SourcegraphLogo: import("svelte").Component; type SourcegraphLogo = ReturnType; export default SourcegraphLogo;