interface Props {
    value: string | number;
    label: string;
    description?: string;
    icon?: string;
    variant?: 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
    size?: 'sm' | 'md' | 'lg';
    trend?: number | null;
    trendLabel?: string;
    isLoading?: boolean;
    onclick?: () => void;
}
declare const SimpleKpiCard: import("svelte").Component<Props, {}, "">;
type SimpleKpiCard = ReturnType<typeof SimpleKpiCard>;
export default SimpleKpiCard;
//# sourceMappingURL=SimpleKpiCard.svelte.d.ts.map