/** * Formatting scheme for the number-text table column */ export declare const NumberTextFormat: { readonly default: undefined; readonly decimal: "decimal"; }; export type NumberTextFormat = (typeof NumberTextFormat)[keyof typeof NumberTextFormat]; /** * The aligment of the value in the number-text table column. * The `default` alignment is determined by the column's `NumberTextFormat`. */ export declare const NumberTextAlignment: { readonly default: undefined; readonly left: "left"; readonly right: "right"; }; export type NumberTextAlignment = (typeof NumberTextAlignment)[keyof typeof NumberTextAlignment];