import React from 'react'; import { SectionContentSize } from '../../../layout/section/baseSection'; import { QrCardProps } from '../../../qrCard'; import { TripCardProps } from '../../../tripCard'; declare type CardsProps = TripCardProps | QrCardProps; declare type ChildrenProps = Array> | React.ReactElement; export declare type CardsSectionProps = Readonly<{ children: ChildrenProps; className?: string; contentSize?: SectionContentSize; }>; export declare const CardsSection: ({ children, className, contentSize, }: CardsSectionProps) => JSX.Element; export {};