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