import * as React from 'react';

/**
 * Sticky mobile header. Chrome only appears at mobile width in the source -- the desktop
 * view is bare content (embedded eBay listing). No real logo mark exists (see readme) so
 * this renders the wordmark in the condensed display face only.
 */
export interface AppHeaderProps {
  brand?: string;
  cartCount?: number;
}
export function AppHeader(props: AppHeaderProps): JSX.Element;
