export default icosahedron;
export type IcosahedronOptions = {
    radius?: number;
};
/**
 * @typedef {object} IcosahedronOptions
 * @property {number} [radius=0.5]
 */
/**
 * @alias module:icosahedron
 * @param {IcosahedronOptions} [options={}]
 * @returns {import("../types.js").SimplicialComplex}
 */
declare function icosahedron({ radius }?: IcosahedronOptions, ...args: any[]): import("../types.js").SimplicialComplex;
