import * as PIXI from 'pixi.js';
import { IGraphicOption } from './option';
interface IPolygonParam {
    path: Array<{
        x: number;
        y: number;
    }>;
}
export declare function drawPolygon(graphic: PIXI.Graphics, param: IPolygonParam & IGraphicOption): void;
export {};
