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