import { FC, ReactNode } from 'react';
import { ViewProps } from 'react-native';
export interface Block {
    component: ReactNode;
    hasSeparator?: boolean;
}
export interface MainCardListProps extends ViewProps {
    displayId: string;
    children?: ReactNode;
    blocks?: Block[];
    isSelected?: boolean;
}
declare const MainCardList: FC<MainCardListProps>;
export default MainCardList;
