import React from 'react'; import * as SS from 'styled-system'; type WrapperSystemProps = SS.PositionProps & SS.OpacityProps; type WrapperOwnProps = { scale?: number; blur?: string; }; export type AcrylicBackdropProps = WrapperOwnProps & WrapperSystemProps & React.HTMLAttributes; export declare function AcrylicBackdrop(props: AcrylicBackdropProps): JSX.Element; export {};