import { type ReactNode } from 'react'; import { type AriaLabelingProps, type DataTestId, type DOMProps, type StylingProps } from '@dynatrace/strato-components/core'; /** * @public */ export interface TimeframeSelectorPresetsProps extends DOMProps, DataTestId, StylingProps, AriaLabelingProps { /** Children shown inside the presets list.A default list of presets is shown if no children are set. */ children?: ReactNode; } /** * A list of preset items shown in the overlay. * @public */ export declare const Presets: { (props: TimeframeSelectorPresetsProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; };