declare const FixedValueBrand: unique symbol; export declare class FixedValue { [FixedValueBrand]: void; value: V; constructor(fn: V); } export declare function fixed(fn: V): FixedValue; export declare function isFixedValue(value: any): value is FixedValue; export {}; //# sourceMappingURL=fixed.d.ts.map