import { IGIAC } from '@antv/gi-sdk'; import * as React from 'react'; export interface ILargeGraph { GIAC: IGIAC; handleClick: () => void; minSize: string; maxSize: string; placement: 'LT' | 'RT' | 'LB' | 'RB'; offset: number[]; highlightColor: string; backgroundColor: string; } declare const LargeGraph: React.FunctionComponent; export default LargeGraph;