import type { Ref } from 'react'; import type { View, ViewProps } from 'react-native'; export type GlassContainerProps = { /** * The distance at which glass elements start affecting each other. * Controls when glass elements begin to merge together. * @default undefined */ spacing?: number; ref?: Ref; } & ViewProps; //# sourceMappingURL=GlassContainer.types.d.ts.map