import React from 'react'; interface Props { forceTheme?: 'light' | 'dark'; appName?: string; children: React.ReactNode; } export declare const AppBase: (props: Props) => JSX.Element; export declare const AppBaseStateful: ({ children, appName, forceTheme }: Props) => JSX.Element; export {};