interface Props { /** "Kinesis" colour */ logoColour?: string; /** Text colour */ textColour?: string; /** CSS width value */ width?: string; } /** * The primary Reuters logo (Kinesis mark plus wordmark) as inline SVG, with configurable colours and width. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-logos-reuterslogo--docs) */ declare const ReutersLogo: import("svelte").Component; type ReutersLogo = ReturnType; export default ReutersLogo;