import { Dimension, Granularity, TimeRange } from '@embeddable.com/core'; /** * Constructs a TimeRange covering the full granularity bucket for a clicked time-axis bar. * e.g. granularity=month, value="2024-01-01" → { from: 2024-01-01T00:00:00Z, to: 2024-01-31T23:59:59Z } */ export declare const getTimeRangeFromDimensionValue: ({ value, stateGranularity, dimension, }: { value?: string; stateGranularity?: Granularity; dimension?: Dimension; }) => TimeRange; //# sourceMappingURL=dimension.utils.d.ts.map