import React from 'react'; import { type Animated } from 'react-native'; import type { BoxBaseProps } from '../../layout/Box'; import type { VStackProps } from '../../layout/VStack'; export type OverlayBaseProps = Omit & { /** Opacity of overlay. Pass in the animated value from useOverlayAnimation to use CDS approved animation curves and timings. */ opacity: Animated.Value; }; export type OverlayProps = OverlayBaseProps & Omit; export declare const Overlay: React.MemoExoticComponent< (_props: OverlayProps) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=Overlay.d.ts.map