import React from 'react'; import * as SS from 'styled-system'; type WrapperSystemProps = SS.SizeProps & SS.WidthProps & SS.MinWidthProps & SS.MaxWidthProps & SS.HeightProps & SS.MinHeightProps & SS.MaxHeightProps & SS.PositionProps; export type AcrylicGraphicProps = { disableBackdrop?: boolean; backdropOpacity?: number; backdropScale?: number; backdropBlur?: string; } & WrapperSystemProps & React.HTMLAttributes; export declare function AcrylicGraphic(props: AcrylicGraphicProps): JSX.Element; export {};