declare type ActualWidth = { idWidth: number; priWidth: number; textWidth: number; projWidth: number; ctxWidth: number; dueWidth: number; }; declare type ResultWidth = { textWidth: number; projWidth: number; ctxWidth: number; }; export declare function calculateWidth(totalWidth: number, { idWidth, priWidth, textWidth, projWidth, ctxWidth, dueWidth }: ActualWidth, spacing: number): ResultWidth | null; export {};