import type { ValuesOf } from '../../Types/ValuesOf'; /** * `Strategy` - The `Strategy` object is used to describe the different types of strategies. * * @public */ export declare const Strategy: { /** * `absolute` - TODO */ readonly Absolute: "absolute"; /** * `fixed` - TODO */ readonly Fixed: "fixed"; }; /** * @public */ export type Strategy = ValuesOf; //# sourceMappingURL=Strategy.d.ts.map