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