import { HTMLAttributes } from 'react'; import { Options } from './types/options.types'; export interface AppProps extends HTMLAttributes { options: Options; } export declare function App({ children, options }: AppProps): JSX.Element;