import { Theme } from "@emotion/react"; import { CSSProperties } from "@styled-system/css"; export interface LogoProps { /** * Color of the Logo. Defaults to the primary color of the theme. */ color?: keyof Theme["colors"] | "currentColor"; width?: CSSProperties["width"]; height?: CSSProperties["height"]; } export declare const Logo: ({ color, height, width, }: LogoProps) => import("@emotion/react/jsx-runtime").JSX.Element;