import { LidoComponentProps } from '../utils/index.js'; export type { Theme } from '../theme/index.js'; export declare enum TableAlign { left = 0, center = 1, right = 2 } export type TableAligns = keyof typeof TableAlign; export declare enum TableTextColor { primary = 0, secondary = 1, warning = 2, error = 3, success = 4, default = 5 } export type TableTextColors = keyof typeof TableTextColor; export declare enum TrHighlight { positive = 0, negative = 1, warning = 2 } export type TrHighlights = keyof typeof TrHighlight; export declare enum ThSortDir { ASC = 0, DESC = 1 } export type ThSortDirs = keyof typeof ThSortDir; export declare enum ThTdVariant { string = 0, icon = 1 } export type ThTdVariants = keyof typeof ThTdVariant; export type TableProps = LidoComponentProps<'table'>; export type TheadProps = LidoComponentProps<'thead', { sticky?: boolean; }>; export type TbodyProps = LidoComponentProps<'tbody'>; export type TfootProps = LidoComponentProps<'tfoot'>; export type TrProps = LidoComponentProps<'tr', { highlight?: TrHighlights; }>; export type ThProps = LidoComponentProps<'th', { align?: TableAligns; sortDir?: ThSortDirs; variant?: ThTdVariants; }>; export type TdProps = LidoComponentProps<'td', { align?: TableAligns; textColor?: TableTextColors; variant?: ThTdVariants; numeric?: boolean; }>; //# sourceMappingURL=types.d.ts.map