import { type HTMLAttributes, type ReactNode } from 'react'; interface Props extends HTMLAttributes { children?: ReactNode; } export default function GreyCard(props: Props): JSX.Element; export {};