import React from 'react'; import { type ViewProps } from 'react-native'; export interface LiquidGlassContainerProps extends ViewProps { /** * @description The spacing value for the glass container effect * * @default 0 * * @platform iOS */ spacing?: number; } /** * LiquidGlassContainer component * * A UIKit-based container that applies the iOS 26+ UIGlassContainerEffect. * This component uses the liquid glass container effect with configurable spacing. * * Platform: iOS only (iOS 26+) * * @platform ios * * @example * ```tsx * * Content inside glass container * * ``` */ export declare const LiquidGlassContainer: React.FC; //# sourceMappingURL=LiquidGlassContainer.d.ts.map