UNPKG

226 BTypeScriptView Raw
1import { FC } from 'react';
2import { PropSummaryValue } from './types';
3interface ArgValueProps {
4 value?: PropSummaryValue;
5 initialExpandedArgs?: boolean;
6}
7export declare const ArgValue: FC<ArgValueProps>;
8export {};