import React from 'react'; import type { InternalOcNamePath } from './OcForm.types'; export interface OcListContextProps { getKey: (namePath: InternalOcNamePath) => [React.Key, InternalOcNamePath]; } declare const OcListContext: React.Context; export default OcListContext;