export interface Brand {
    src: string;
    alt: string;
}
export interface BrandsStripProps {
    /** Small uppercase title, e.g. "Marken, mit denen wir arbeiten". */
    title?: string;
    /** White-on-transparent manufacturer logos (702x190 px assets), five per row. */
    brands: Brand[];
}
/**
 * The one dark band of the page (`.kwac-brands`): near-black background, small
 * gray uppercase title and a five-column row of white manufacturer logos at 90%
 * opacity. Three columns below 740px, two below 400px.
 */
export declare function BrandsStrip({ title, brands }: BrandsStripProps): import("react").JSX.Element;
