import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type CardParts = { card: ''; }; declare type CardDOMProps = React.ComponentPropsWithRef<'div'>; declare type CardStyleConfigProp = { styleConfig?: StyleConfig; }; export declare type CardSystemProps = BoxSystemProps; export declare type CardProps = CardDOMProps & CardStyleConfigProp & CardSystemProps & { as?: React.ElementType; }; export declare const systemProps: (props: any) => any[]; export declare const Card: React.ForwardRefExoticComponent & React.RefAttributes>; export {};