import type { TimestampUnit } from '../../../model/malloy_types'; import type { ExprValue } from './expr-value'; import type { TimeResult } from './time-result'; export type GranularResult = TimeResult & { timeframe: TimestampUnit; }; export declare function isGranularResult(v: ExprValue): v is GranularResult;