import React from 'react';
import type { GraphQLArgument } from 'graphql';
interface ViewNestedProps {
    expanded: boolean;
    expandText: string;
    collapseText: string;
    deepLink?: string;
    level?: number;
    openByDefault?: boolean;
    operationPointer?: string;
    args?: GraphQLArgument[];
    onClick?: () => void;
}
export declare const ViewNested: React.NamedExoticComponent<React.PropsWithChildren<ViewNestedProps>>;
export {};
