UNPKG

rsuite

Version:

A suite of react components

8 lines (7 loc) 359 B
import type { Size } from '../internals/types'; export type ModalSize = Size | 'full' | number | string; export declare const useBodyStyles: (ref: React.RefObject<HTMLElement | null>, options: { overflow: boolean; size?: ModalSize; prefix: (...classes: any) => string; }) => [React.CSSProperties | null, (entering?: boolean) => void, () => void];