export interface ProductItem {
    productRetailerId: string;
}
export interface WhatsappProductListSection {
    title: string;
    productItems: ProductItem[];
}
export interface WhatsappProductListProps {
    body: string;
    header: string;
    catalogId: string;
    sections: WhatsappProductListSection[];
    footer?: string;
}
export declare const WhatsappProductList: (props: WhatsappProductListProps) => any;
