import { IAppLink } from '../components/App/index';
import { ExampleGroup } from './examplesOf';
/**
* Creates a
on the page and renders a demo app for React components organized into example groups.
* @param examples A set of pages, organized into groups, that are used to demo React components.
* @param defaultRouteComponent A function that returns the contents that will be displayed on the home page.
* @param appTitle A title for the application that will be displayed in the header.
* @param headerLinks A set of links to put in the header of the application.
*/
export declare function createApp(examples: ExampleGroup | ExampleGroup[], defaultRouteComponent?: () => JSX.Element | null, appTitle?: string, headerLinks?: IAppLink[]): void;