import type { Snippet } from 'svelte'; interface Props { /** Snippet content */ children?: Snippet; /** ID of the header container */ id?: string; /** Add a class to target with SCSS. */ class?: string; /** * Make the header stick when user scrolls. */ sticky?: boolean; /** * Background CSS */ background?: string; /** * Border bottom CSS */ borderBottom?: string; /** * Colour props passed to `ReutersGraphicsLogo` component. */ logoProps?: { logoColour?: string; textColor?: string; }; /** * Link the logo points to. */ homeLink?: string; } /** * A lightweight header with the Reuters Graphics logo and a slot for extra content; optionally sticky. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-page-furniture-toolsheader--docs) */ declare const ToolsHeader: import("svelte").Component; type ToolsHeader = ReturnType; export default ToolsHeader;