import * as React from "react"; import { ActionProps } from "../CardBase"; import { ViewProps } from "../View"; export interface Props extends ViewProps { title?: string; subTitle?: string; skeleton?: boolean; thumbnail?: string; customActionItemsRenderer?: (actionProps: ActionProps) => React.ReactNode; } declare const CardListIndex: { (props: Props): JSX.Element; displayName: string; }; export default CardListIndex;