export type PolygonFieldProps = { /** The uniform key this field drives: a vec2 array, flat [x0,y0, x1,y1, ...]. */ readonly uniform: string; /** Number of polygon vertices; laid out in a ceil(√points)-column grid. */ readonly points: number; /** Display name; defaults to the uniform key. */ readonly label?: string; }; export declare function PolygonField({ uniform, points, label }: PolygonFieldProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=polygon-field.d.ts.map