import { type ReactNode } from 'react'; import { View, type ViewProps } from 'react-native'; import { type CardContentVariantProps, type CardFooterVariantProps, type CardVariantProps } from './styles'; export interface CardProps extends ViewProps, CardVariantProps { asChild?: boolean; className?: string; children?: ReactNode; } declare const CardRoot: import("react").ForwardRefExoticComponent>; export interface CardStripeProps extends ViewProps { asChild?: boolean; className?: string; } declare const CardStripe: import("react").ForwardRefExoticComponent>; export interface CardHeaderProps extends ViewProps { asChild?: boolean; className?: string; children?: ReactNode; } declare const CardHeader: import("react").ForwardRefExoticComponent>; export interface CardContentProps extends ViewProps, CardContentVariantProps { asChild?: boolean; className?: string; children?: ReactNode; } declare const CardContent: import("react").ForwardRefExoticComponent>; export interface CardFooterProps extends ViewProps, CardFooterVariantProps { asChild?: boolean; className?: string; children?: ReactNode; } declare const CardFooter: import("react").ForwardRefExoticComponent>; type CardCompoundComponent = typeof CardRoot & { Stripe: typeof CardStripe; Header: typeof CardHeader; Content: typeof CardContent; Footer: typeof CardFooter; }; export declare const Card: CardCompoundComponent; export {}; //# sourceMappingURL=index.d.ts.map