import React from 'react'; import { ViewProps } from 'react-native'; export declare type CardProps = ViewProps & { /** * Height depends on the size: * s - 92% * m - 62% * l - 30% */ size?: 's' | 'm' | 'l'; }; export declare const CardGrid: React.FC;