import { CSSProperties } from 'react'; interface Options { widgetWidth: number; contentSize?: number; isMobile: boolean; } interface Result { width: number; isCompact: boolean; } export declare const useCompactDesktopWidth: ({ widgetWidth, contentSize, isMobile }: Options) => Result; export declare const getCompactContainerStyle: (isCompact: boolean, width: number) => CSSProperties | undefined; export default useCompactDesktopWidth;