import React from 'react'; import { ScrollViewProps } from 'react-native'; export declare type CardProps = ScrollViewProps & { /** * Height depends on the size: * s - 92% * m - 62% * l - 30% */ size?: 's' | 'm' | 'l' | number; /** * Size of the gap between cards */ gap?: number; /** * Shows horizontal padding. Useful when used outside of any containers. */ padding?: boolean; }; export declare const CardScroll: React.FC;