import * as React from 'react';

/**
 * Section — from @kuppwest/apple-clean@0.1.0.
 */
export interface SectionProps {
  /** Big centered statement headline (`.kwac-statement`), e.g. "1.800 kg. Zieht, was Sie vorhaben." Omit for image-only bands */
  statement?: React.ReactNode;
  /** One muted paragraph under the statement (`.kwac-band-copy`), max ~640px wide. */
  copy?: React.ReactNode;
  /** `alt` paints the light-gray band background (`.kwac-band-alt`). Alternate white and alt down the page. */
  alt?: boolean;
  /** `final` adds the extra vertical padding of the closing call-to-action band (`.kwac-final`). */
  final?: boolean;
  /** Content below the copy: grids, tables, cards, `CtaActions`. */
  children?: React.ReactNode;
  className?: string;
  id?: string;
  style?: CSSProperties;
}

export declare const Section: React.ComponentType<SectionProps>;
