import React from 'react'; export type GridCellNumericProps = { /** * Accessible tab index. You should generally pass through the tabIndex * provided to the Renderer component. */ tabIndex: number; /** * Contents */ label: string; /** * Should this be disabled */ disabled?: boolean; /** * Background color to use. Should only use official colors in * the 0-200 range to be properly accessible with textPrimary. */ backgroundColor?: string; }; declare const GridCellNumericImpl: ({ tabIndex, label, disabled, backgroundColor, }: GridCellNumericProps) => React.JSX.Element; /** * **Deprecated**: Use `GridCellDefault` instead and apply `numeric` prop. * * This is a cell that renders content aligned to the right * with tabular (monospaced) numbers. Use this in combination * with a cell Renderer function to render numeric cells. * * ```tsx * const numberColumn: Column = { * id: "number", * cell: { * Renderer: ({ label, tabIndex }) => ( * * ) * } * } * ``` * * @deprecated Use `GridCellDefault` instead and apply `numeric` prop. */ export declare const GridCellNumeric: typeof GridCellNumericImpl; export {}; //# sourceMappingURL=cell-numeric.d.ts.map