import { LogoColor } from '../../tokens/logo-colors/LogoColors'; import { SVGAttributes, type CSSProperties } from 'react'; export interface LogoProps extends Omit, 'children'> { /** Fill color of the Logo */ feColor?: LogoColor; /** If provided, sets the CSS height of the Logo */ feHeight?: CSSProperties['height']; /** If provided, sets the CSS width of the Logo */ feWidth?: CSSProperties['width']; /** If provided, sets a descriptive `` for the `<svg>` element */ title?: string; } /** * The `<Logo>` component renders the SKF logo in three different colors. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/folder/61962620fa9fb7a532915c27) for design principles. */ declare const Logo: import("react").ForwardRefExoticComponent<LogoProps & import("react").RefAttributes<SVGSVGElement>>; export default Logo;