import React, { ReactNode } from 'react'; interface ScrollWrapType { id?: string; bottomHeight?: string; children: ReactNode; heightWrap?: string; } export declare const ScrollWrap: React.FC; export {};