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