import { default as Color } from 'color'; import { Amount, NestedAgingBalancesByCustomer } from '@zeniai/client-epic-state'; import { ElementMetadata } from '../../../reportTreeTypes'; export interface SubCustomerTotalRowProps { height: number; isScrolling: boolean; isSticky: boolean; noMarginForEntity: boolean; total: Amount; backgroundColor?: Color; metadata?: ElementMetadata; nestedCustomer?: NestedAgingBalancesByCustomer; } export declare function SubCustomerTotalRow({ backgroundColor, isSticky, height, noMarginForEntity, isScrolling, total, nestedCustomer, metadata, }: SubCustomerTotalRowProps): import("react/jsx-runtime").JSX.Element;