import { PipLayoutCell } from '../pipGrid'; /** * Rotated double-12 body for 13–15: portrait 4×3 turned sideways → 3 rows × 4 cols. * (Distinct from classic value 12, which stays portrait 4×3.) */ export declare function buildTwelveBodyRotated(): PipLayoutCell[]; /** @deprecated Use buildTwelveBodyRotated — high-value body is 3×4, not portrait 4×3. */ export declare const buildTwelveBody: typeof buildTwelveBodyRotated; /** * Build layouts 13–18. * - 13–15: rotated 3×4 body + centered top row. * - 16: solid 4×4. * - 17–18: 2×4 double columns at each edge + 1–2 center pips. */ export declare function buildHighValueLayout(value: number): readonly PipLayoutCell[]; /** Precomputed layouts for values 13–18. */ export declare const HIGH_VALUE_LAYOUTS: Record;