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