/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Primitive } from './primitive.js'; export declare const DefaultStarProps: { pointCount: number; outerRadius: number; innerRadius: number; thickness: number; }; export type StarProps = Partial; export declare function Star(props?: StarProps): Primitive;