/** * Custom hook to calculate a continuous scale value based on viewport width * Uses linear interpolation to smoothly scale between min and max values * * @param minScale - Minimum scale value (default: 0.68) * @param maxScale - Maximum scale value (default: 1.3) * @param minWidth - Viewport width at which minScale is applied (default: 1440) * @param maxWidth - Viewport width at which maxScale is applied (default: 2560) * @returns The calculated scale value */ export declare const useContinuousScale: (minScale?: number, maxScale?: number, minWidth?: number, maxWidth?: number) => number;