import { ComponentType } from 'react'; type GraphiQLPlugin = { /** * A component that renders content into the plugin pane. */ content: ComponentType; /** * A component that renders an icon that will be shown inside a button that * toggles the plugin visibility. */ icon: ComponentType; /** * The unique title of the plugin. If two plugins are present with the same * title the provider component will throw an error. */ title: string; }; declare function useExporterPlugin(props: any): GraphiQLPlugin; export { useExporterPlugin };