import React from 'react'; import './style.scss'; export interface Iwrap { children: any; wrapStyle?: React.CSSProperties; key?: string | number; } declare function Wrap(props: Iwrap): React.JSX.Element; export default Wrap;