import type React from 'react'; export interface NullableUnionsProps { /** * Optional string that can be undefined */ label?: string; /** * Value that can be null */ value: number | null; /** * Optional value that can be null or undefined */ description?: string | null; } /** * Component to test nullable union type inference */ export declare const NullableUnions: React.FC; //# sourceMappingURL=nullable-unions.d.ts.map