import { FC, ReactNode } from 'react';
declare const DefaultToolbarRenderProps: FC<{
    prettify: ReactNode;
    copy: ReactNode;
    merge: ReactNode;
}>;
/**
 * Configure the UI by providing this Component as a child of GraphiQL.
 */
export declare const GraphiQLToolbar: FC<{
    children?: typeof DefaultToolbarRenderProps | ReactNode;
}>;
export {};
