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];
