import * as react from 'react';
import { MenuProps } from '../../WebCore/Menu/Menu.js';
import { SurfaceProps } from '../../WebCore/Surface/Surface.js';
import { KpiIndicatorColor } from '../KpiIndicator/utils.js';

interface TestKPICardProps extends Omit<SurfaceProps, 'variation'> {
    colorScheme?: KpiIndicatorColor;
    variation?: 'dimmed' | 'default';
    active?: boolean;
    disabled?: boolean;
    title?: string;
    description?: string;
    loading?: boolean;
    onShowMoreClick?: () => void;
    menuItems?: MenuProps['menuItems'];
}
declare const TestKPICard: react.ForwardRefExoticComponent<Omit<TestKPICardProps, "ref"> & react.RefAttributes<HTMLDivElement>>;

export { TestKPICard as default };
export type { TestKPICardProps };
