import { FC } from 'react';
type AppProps = {
    apiUrl?: string;
    siteUrl?: string;
    logoUrl?: string;
    appName?: string;
    helpUrl?: string;
    helpLabel?: string;
    latitude?: number;
    longitude?: number;
    zoom?: number;
    territoireType?: string;
    territoires?: string;
    routeInitiale?: string;
    matomoUrl?: string;
    matomoSiteId?: string;
};
export declare const App: FC<AppProps>;
export {};
