import { BoxProps } from "@stenajs-webui/core"; import * as React from "react"; import { CssPropColor } from "@stenajs-webui/theme"; export interface CardyProps extends Omit { color?: CssPropColor; loading?: boolean; } export declare const Cardy: React.FC;