import React from 'react';
interface WrapperProps {
    children?: React.ReactNode;
}
declare function Wrapper(props: WrapperProps): JSX.Element;
export default Wrapper;
