export interface Cell { cx: number; cy: number; outer: boolean; stagger: number; exitStart: number; fadeIn: number[]; fadeOut: number[]; } type StaggerMode = 'individual' | 'grouped' | 'by-row'; interface BuildOptions { staggerInterval?: number; rowOffset?: number; stagger?: StaggerMode; } export declare const aiLogo: Cell[]; export declare function buildCells(positions: number[][], options?: BuildOptions): Cell[]; export declare const brush: Cell[]; export declare const eye: Cell[]; export declare const hourglass: Cell[]; export declare const mag: Cell[]; export declare const crop: Cell[]; export declare const flower: Cell[]; export declare const image: Cell[]; export declare const lasso: Cell[]; export declare const page: Cell[]; export declare const wand: Cell[]; export declare const bargraph: Cell[]; export declare const trefoil: Cell[]; export declare const dial: Cell[]; export declare const folder: Cell[]; export declare const arrow: Cell[]; export declare const cloud: Cell[]; export declare const comment: Cell[]; export declare const filter: Cell[]; export declare const microphone: Cell[]; export declare const pencil: Cell[]; export declare const potion: Cell[]; export declare const slider: Cell[]; export declare const timeline: Cell[]; export declare const eyedrop: Cell[]; export declare const adobeA: Cell[]; export declare const adobeD: Cell[]; export declare const adobeO: Cell[]; export declare const adobeB: Cell[]; export declare const adobeE: Cell[]; export declare const cc: Cell[][]; export declare const dc: Cell[][]; export declare const exp: Cell[][]; export declare const analyze: Cell[][]; export declare const mega: Cell[][]; export {};