import React from "react"; type WrapperProps = React.HTMLAttributes & { withCssReset?: boolean; withDarkmodeBackground?: boolean; }; export default function Wrapper({ withDarkmodeBackground, withCssReset, className, ...props }: WrapperProps): React.JSX.Element; export {};