import type { PropsWithChildren, ReactNode } from "react"; import type { ClassName } from "@helpers/types"; export interface CardProps extends PropsWithChildren, ClassName { header?: ReactNode; variant?: TCardVariant; } export type TCardVariant = "shadow" | "outlined";