import React, { ReactNode } from 'react'; import { Box } from '../Box'; import type { ResponsiveValue } from '@shopify/restyle'; import type { Theme } from '../../theme/theme'; interface CardProps { title: string; titleVariant?: ResponsiveValue; subtitle?: string; subtitleVariant?: ResponsiveValue; onPress?: () => void; disabled?: boolean; onInfoPress?: () => void; titleIcon?: ReactNode; rightIcon?: ReactNode; } declare type CardGroupProps = React.ComponentProps & { leftComponent: CardProps; middleComponent?: CardProps; rightComponent: CardProps; width?: string | number; height?: string | number; withCardContainer?: boolean; }; export declare const CardGroup: ({ leftComponent, middleComponent, rightComponent, width, withCardContainer, ...props }: CardGroupProps) => JSX.Element; export {};