import * as React from 'react';

/**
 * Footer — from @kuppwest/apple-clean@0.1.0.
 */
export interface FooterProps {
  /** Brand wordmark, defaults to "Kupp-west". */
  brand?: string;
  /** One short muted sentence under the wordmark. */
  children?: React.ReactNode;
  /** Optional technical listing token rendered in tiny light-gray type, e.g. "[kwkw-131282-153195-kwkw]". */
  token?: string;
}

export declare const Footer: React.ComponentType<FooterProps>;
