import React from "react";
interface Props {
    value: number;
    label: string;
    sub: string;
    accent: string;
    active: boolean;
    icon?: any;
    onClick: () => void;
}
export default function WorkflowStatCard({ value, label, sub, accent, active, icon: Icon, onClick, }: Props): React.JSX.Element;
export {};
