import type { GridLayoutCellType, ImageCloudOptions } from '../../interface'; export declare function hexagonalGridLayout(options: ImageCloudOptions): { context: { cellHexSideLength: number; cellHexPoints: { x: number; y: number; }[]; cellHeight: number; cellWidth: number; cellInfo: GridLayoutCellType[]; cellCount: number; cellType: string; cellPixelCount: number; eachPixel: (cell: GridLayoutCellType, callback: (...args: any) => void) => void; clipPath: string; }; imageLength: number; };