/** @jsxRuntime classic */ /** @jsx jsx */ import * as React from 'react'; import { jsx } from '@emotion/react'; import './Wrapper.css'; interface Props { children: React.ReactNode; center?: boolean; style?: React.CSSProperties; } export declare function Wrapper({ children, center, style }: Props): jsx.JSX.Element; export {};