import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '../../../core';
export type DataListItemValueStylesNames = 'itemValue';
export interface DataListItemValueProps extends BoxProps, CompoundStylesApiProps<DataListItemValueFactory>, ElementProps<'dd'> {
    /** Value content */
    children?: React.ReactNode;
}
export type DataListItemValueFactory = Factory<{
    props: DataListItemValueProps;
    ref: HTMLElement;
    stylesNames: DataListItemValueStylesNames;
    compound: true;
}>;
export declare const DataListItemValue: import("../../..").MantineComponent<{
    props: DataListItemValueProps;
    ref: HTMLElement;
    stylesNames: DataListItemValueStylesNames;
    compound: true;
}>;
