import React, { FC } from 'react'; interface IApp { children: React.ReactNode; color?: string; } export declare const App: FC; export {};