import { ReactChildren } from 'react'; interface Props { /** * any valid jsx that will render inside the opacity block */ children: ReactChildren; /** * whole number of the opacity you want to accomplish, will be converted to decimal automatically. From 1-9. */ opacity: number; } declare const Opacity: ({ children, opacity }: Props) => JSX.Element; export default Opacity;