import { type HTMLAttributes } from 'react';
import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core';
/**
* @public
*/
export interface TimeframeSelectorPresetItemProps extends HTMLAttributes, DataTestId, StylingProps, WithChildren {
/** The value of the timeframe preset. */
value: {
/** Start of the time frame. */
from: string;
/** End of the time frame. */
to: string;
};
}
/**
* TimeframeSelector preset item shown inside the presets list of the overlay.
* @public
*/
export declare const PresetItem: {
(props: TimeframeSelectorPresetItemProps & {
_isSelected?: boolean;
}): import("react/jsx-runtime.js").JSX.Element | null;
displayName: string;
};