import React from 'react'; import "./Wrapper.scss"; export type wrap = 'fixWrap' | 'fluidWrap' | "customWrap"; export interface Props { wrapClass: wrap; children?: any; wrapId?: any; wrapStyle?: React.CSSProperties; } export declare const Wrapper: ({ wrapClass, children, wrapId, wrapStyle }: Props) => import("react/jsx-runtime").JSX.Element; export default Wrapper;