import { r as SummaryStrings } from "./summary-D8UEQXYr.js"; import { CSSProperties, ReactNode } from "react"; //#region src/core/strings-dice.d.ts type DiceStrings = Pick; //#endregion //#region src/charts/dice-pips/index.d.ts interface DicePipsProps { /** Integer 0–6 (rounded). Above 6 renders a centered numeral. */ value: number; /** Draw the die outline (default true); false = pips only, dense cells. */ face?: boolean | undefined; size?: number | undefined; strings?: DiceStrings | undefined; /** Minimum in-chart label size, in viewBox units. Geometry sizes labels from * the mark and floors them at 7; this raises that floor and moves the * reserved gutter with it. A label the box cannot seat at the raised floor * drops rather than shrinking back under it. */ labelSize?: number | undefined; title?: string | undefined; summary?: string | false | undefined; id?: string | undefined; className?: string | undefined; style?: CSSProperties | undefined; children?: ReactNode | undefined; } declare function dicePipsSummary(value: number, strings?: DiceStrings): string; declare function DicePips(props: DicePipsProps): ReactNode; //#endregion export { DiceStrings as i, DicePipsProps as n, dicePipsSummary as r, DicePips as t };