import React, { ReactNode } from "react";
interface CardProps {
isprimary?: boolean;
backgroundColor?: string;
textcolor?: string;
children?: ReactNode;
}
export default function StkCard({ isprimary, textcolor, backgroundColor, children }: CardProps): React.JSX.Element;
export {};