export interface SpreadsheetConditionalDataBar { color: string; startPercent: number; widthPercent: number; axisPercent?: number; showValue: boolean; } export declare function spreadsheetConditionalDataBar(color: string, value: number, minimum: number, maximum: number, minLength: number, maxLength: number, showValue: boolean): SpreadsheetConditionalDataBar;