///
import { BaseAnimationProps } from '../Animation';
import { FlexProps } from '../Flex';
export type OverlayProps = FlexProps & {
/**
* If a blurred overlay is wanted, use this prop to set the blur px.
*/
readonly blur?: number;
/**
* Boolean to show or hide the overlay
*/
readonly isVisible?: BaseAnimationProps['isVisible'];
};