import React, { type ReactNode } from 'react';
type Falsy = null | undefined | false;
type Section = (ReactNode | Falsy)[];
export declare function FunTxSummarySections({ sections, }: {
    sections: (Section | Falsy)[];
}): React.JSX.Element;
export {};
