import type { ReactNode } from 'react'; import { type BgVariant } from '../../utils/bg.js'; export interface LogoCloudSimpleProps { headline?: string; bg?: BgVariant; className?: string; children?: ReactNode; } export declare function LogoCloudSimple({ headline, bg, className, children, }: LogoCloudSimpleProps): import("react/jsx-runtime").JSX.Element;