import * as React from 'react';

/**
 * Mobile footer. No real logo mark exists (see readme Logo) so this renders text only --
 * intentionally does not reproduce the generic placeholder square mark seen in the source.
 */
export interface SiteFooterProps {
  brand?: string;
  links?: string[];
  copyrightYear?: number;
}
export function SiteFooter(props: SiteFooterProps): JSX.Element;
