import { type ReactNode, type Ref } from 'react'; export interface TruncateStyleProps { width?: number; isFixedSize?: boolean; shouldTruncate?: boolean; children?: ReactNode; testId?: string; innerRef?: Ref | undefined; className?: string; } export declare const getTruncationStyleVars: ({ width }: TruncateStyleProps) => { '--local-dynamic-table-width': string; } | undefined;