UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

10 lines (9 loc) 342 B
import React from 'react'; import { ValueProps } from '../../types'; export type ValueProviderContextProps = { extend: <T = ValueProps>(props: T) => T; inheritedProps?: ValueProps; inheritedContext?: ValueProps; }; declare const ValueProviderContext: React.Context<ValueProviderContextProps>; export default ValueProviderContext;