import { FC } from 'react';
interface AboutPageProps {
    name: string;
    logo: string;
    manifest: string;
    storeLink?: string;
    showDebugLink?: boolean;
}
export declare const AboutPage: FC<AboutPageProps>;
export {};
