export interface Shape {
  borderRadius: number | string;
}
export type ShapeOptions = Partial<Shape>;
declare const _default: Shape;
export default _default;