type Option = { size: 'medium' | 'small'; position: 'normal' | 'first' | 'last'; }; export declare const colPaddingMap: Record; export declare const rowPaddingMap: Record; /** * Builds a CSS `calc()` for `` width from content width in px. * Adds DataTable cell horizontal padding and optional first/last row edge padding. * * @param contentWidthPx - Inner content width in pixels (e.g. from design specs). * * @param option - Optional `size` (default `medium`) and `position` (default `normal`). * * @returns A `calc(...)` string for `width`. * * @example * ```tsx * * // → {{ width: calc(120px + 7px * 2 + 0px) }} * * * // → {{ width: calc(120px + 7px * 2 + 14px) }} * ``` */ export declare function getColumnWidthFromContentWidth(contentWidthPx: number, option?: Partial