import { FC } from 'react';
import { PropSummaryValue } from './types';
interface ArgValueProps {
    value?: PropSummaryValue;
    initialExpandedArgs?: boolean;
}
export declare const ArgValue: FC<ArgValueProps>;
export {};
