import { type ReactElement, type ReactNode } from 'react'; /** * @public */ export type TimeframeSelectorDisplayValueProps = { children?: ReactNode | ((customTriggerProps: { displayValue: ReactNode; }) => ReactElement); }; /** * Typeguard function that will check if a Node is a TimeframeSelector.DisplayValue * @internal */ export declare function _isTimeframeSelectorDisplayValueElement(child: ReactNode): child is ReactElement; /** * `TimeframeSelector.DisplayValue` defines a custom display value within the Trigger. A TimeframeSelector.DisplayValue component * is only valid within a TimeframeSelector.Trigger. * @public */ export declare const DisplayValue: { (props: TimeframeSelectorDisplayValueProps): import("react/jsx-runtime.js").JSX.Element | null; displayName: string; };