import React, { ReactNode } from 'react';
type Props = {
    width?: string;
    height?: string;
    children: ReactNode;
};
declare const ShadowCard: ({ width, height, children }: Props) => React.JSX.Element;
export default ShadowCard;
