import { CommonProps } from "@trackunit/react-components"; import { SelectedDateRange, TemporalPeriod } from "../types"; export type DayRangeSelectOptionsProps = CommonProps & { temporalPeriods: Array; onSelect: (option: SelectedDateRange) => void; selectedDateRange: SelectedDateRange | undefined; }; /** * Renders a list of options for the DayRangeSelect component. */ export declare const DayRangeSelectOptions: ({ "data-testid": dataTestId, temporalPeriods, selectedDateRange, onSelect, }: DayRangeSelectOptionsProps) => import("react/jsx-runtime").JSX.Element | import("react/jsx-runtime").JSX.Element[];