import * as React from 'react'; import { A11yTitleType, AlignSelfType, GridAreaType, MarginType, PadType, } from '../../utils'; import { GridSizeType } from '../Grid'; import { PaginationType } from '../Pagination'; export interface CardsProps { a11yTitle?: A11yTitleType; alignSelf?: AlignSelfType; as?: string; children?: (item: CardType, index: number) => JSX.Element; data?: CardType[]; gridArea?: GridAreaType; margin?: MarginType; onMore?: () => void; pad?: PadType; paginate?: boolean | PaginationType; show?: number | { page?: number }; size?: GridSizeType; step?: number; } type ulProps = Omit; export interface CardsExtendedProps extends CardsProps, ulProps {} declare class Cards extends React.Component< CardsExtendedProps > {} export { Cards };