import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { SerializableTotalProps, TotalProps } from './Total'; export interface TotalsProps { totals: TotalProps[]; style?: StyleProp; } export interface SerializableTotalsProps extends TotalsProps { totals: SerializableTotalProps[]; style?: ViewStyle; } export declare const Totals: React.FunctionComponent;