import type React from 'react'; type Offset = -10 | -5 | 0 | 5 | 10; export interface NumericEnumNegativeProps { /** * Offset value in pixels */ offset: Offset; label: string; } /** * Component to test negative numeric enum inference */ export declare const NumericEnumNegative: React.FC; export {}; //# sourceMappingURL=numeric-enum-negative.d.ts.map