import { ReactNode } from 'react'; interface ShadowBoxProps { shadow: string; children: ReactNode; } declare function ShadowBox({ shadow, children, ...props }: ShadowBoxProps): import("react/jsx-runtime").JSX.Element; export { ShadowBox }; //# sourceMappingURL=ShadowBox.d.ts.map