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