import { MarketActivity } from '@local-logic/types'; export type MarketActivityOptions = { /** * Geography id echoed back in `market_area`. Defaults to `g10` to match the * geographies faker. */ geographyId?: string; /** * Months-of-inventory indicator used for every interval. Drives the * "Market conditions" tab: <= 3 seller's market, 3-6 neutral, > 6 buyer's. * Defaults to a neutral value so that tab renders. */ marketConditionsIndicator?: number; marketConditionsAssessment?: string; }; /** * Generates a market activity response for `all_residential_properties` that * populates the fixed intervals (30d, 31-60d, 12m, 13-24m) plus the trailing * twelve monthly intervals, so every tab of the widget has data to render. */ export declare function generateMarketActivity(options?: MarketActivityOptions): MarketActivity; //# sourceMappingURL=marketActivity.d.ts.map