import React from "react"; import { BoxProps } from "../layout/box"; export interface ElevationProps extends BoxProps { dp?: number; id?: string; style?: object; radius?: string; className?: string; transition?: boolean; children: React.ReactNode; } declare const Elevation: ({ dp, id, radius, children, className, transition, ...res }: ElevationProps) => React.JSX.Element; export default Elevation;