import { Driver, PropertyValueDriver } from '@local-logic/types'; type PropertyValueDriverOverrides = { name: Driver; value?: number | null; value_qualifier?: PropertyValueDriver["value_qualifier"]; }; export type PropertyValueDriversOptions = { /** * Drivers returned in `value_drivers`, in the order the API returns them. * * Values default to descending numbers so that the declared order is the * order the SDK renders them in. Because the defaults start at 100, a driver * without a `value` outranks one with an explicit `value` — set `value` on * every driver when asserting on the order. */ drivers?: PropertyValueDriverOverrides[]; /** * Number of drivers returned when `drivers` is not provided. Defaults to 4, * capped by the number of drivers that have translations. */ count?: number; }; export declare function generatePropertyValueDrivers(options?: PropertyValueDriversOptions): PropertyValueDriver[]; export {}; //# sourceMappingURL=propertyValueDrivers.d.ts.map