import { FC } from 'react'; import { SegmentedButtonsProps } from '../SegmentedButtons'; import { TimeFrameOption } from './types'; interface DetailsSidePanelChartRangeButtonsProps extends Omit { setTimeFrameOption: (param: TimeFrameOption) => void; timeFrameOption: TimeFrameOption; isUnavailable?: boolean; } export declare const DetailsSidePanelChartRangeButtons: FC; export {};