import { HTMLAttributes, Ref } from 'react';
import { IComponentBaseProps } from '../types';
export declare const STATS = "stats";
export declare const STAT = "stat";
export declare const STAT_TITLE = "stat-title";
export declare const STAT_VALUE = "stat-value";
export declare const STAT_DESC = "stat-desc";
export declare const STAT_FIGURE = "stat-figure";
export declare const STAT_ACTIONS = "stat-actions";
export type StatDirection = "horizontal" | "vertical";
export declare const DIRECTION_MAP: Record;
export interface StatProps extends HTMLAttributes, IComponentBaseProps {
ref?: Ref;
/** Layout direction. Default: horizontal (daisyUI default). */
direction?: StatDirection;
}
export interface StatItemProps extends HTMLAttributes, IComponentBaseProps {
ref?: Ref;
}
export interface StatTitleProps extends HTMLAttributes, IComponentBaseProps {
ref?: Ref;
}
export interface StatValueProps extends HTMLAttributes, IComponentBaseProps {
ref?: Ref;
}
export interface StatDescProps extends HTMLAttributes, IComponentBaseProps {
ref?: Ref;
}
export interface StatFigureProps extends HTMLAttributes, IComponentBaseProps {
ref?: Ref;
}
export interface StatActionsProps extends HTMLAttributes, IComponentBaseProps {
ref?: Ref;
}