import { Configurations } from '../types/types'; export declare const HORIZONTAL_MIN_HEIGHT = 400; export declare const VERTICAL_MIN_WIDTH = 330; export declare const HORIZONTAL_DEFAULT_WIDTH = 640; export declare const SPACING = 2; export declare const getAspectRatio: (isHorizontal: boolean) => number; export declare const getMinWidthForViewport: (viewportWidth: number, isChatOpen: boolean) => number; export declare const calculateDefaultSize: (isHorizontal: boolean, isChatOpen: boolean) => { width: number; height: number; }; export declare const calculateDefaultPosition: (configurations: Configurations, width: number, height: number) => { x: number; y: number; }; export declare const calculateDefaultValues: (configurations: Configurations, isHorizontal: boolean, isChatOpen: boolean) => { position: { x: number; y: number; }; size: { width: number; height: number; }; }; export declare const calculateDefaultFabioPosition: (configurations: Configurations, fabioRef: HTMLElement) => { left: number; top: number; } | null;