import type { CSSBreakpoints, DensityTypeValues } from '../../lib/adaptivity'; export type ForcedHiddenByAdaptivityProviderType = false; export type ElementProps = { className: string; }; export type AdaptiveDensityType = Record; export type ViewWidthCSSBreakpoints = Extract; export type AdaptiveViewWidth = Record; export type DeviceTypeCSSBreakpoints = 'mobile' | 'desktop'; export type AdaptiveDeviceType = Record; export interface UseAdaptivityConditionalRender { /** * @deprecated Since 8.0.0. Будет удалено в **VKUI v10** – используйте `density` (см. Https://github.com/VKCOM/VKUI/issues/9015). */ sizeX: AdaptiveDensityType; /** * @deprecated Since 8.0.0. Будет удалено в **VKUI v10** – используйте `density` (см. Https://github.com/VKCOM/VKUI/issues/9015). */ sizeY: AdaptiveDensityType; density: AdaptiveDensityType; viewWidth: AdaptiveViewWidth; deviceType: AdaptiveDeviceType; } //# sourceMappingURL=types.d.ts.map