import { type DataTestId, type StylingProps } from '@dynatrace/strato-components/core'; /** * Component properties interface for the {@link FormattedTimeframe} component. * @public */ export interface FormattedTimeframeProps extends StylingProps, DataTestId { /** Start date of the timeframe. */ from: Date; /** End date of the timeframe. */ to: Date; } /** * Component to format a timeframe leveraging React Intl APIs * @public */ export declare const FormattedTimeframe: import("react").MemoExoticComponent<(props: FormattedTimeframeProps) => import("react/jsx-runtime.js").JSX.Element>;