interface Props { /** "Kinesis" colour */ logoColour?: string; /** Text colour */ textColour?: string; /** CSS width value */ width?: string; } /** * The Reuters Graphics 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-reutersgraphicslogo--docs) */ declare const ReutersGraphicsLogo: import("svelte").Component; type ReutersGraphicsLogo = ReturnType; export default ReutersGraphicsLogo;