import './Card.scss'; export interface CardProps { header?: boolean; footer?: boolean; title?: string; footerContent?: any; variant: 'default' | 'primary' | 'success' | 'warning' | 'error'; rounded?: boolean; shadow?: boolean; paddingRequired?: boolean; size?: 'x-small' | 'small' | 'medium' | 'large'; classnames?: any; contentXPosition?: 'start' | 'center' | 'end'; contentYPosition?: 'top' | 'center' | 'bottom'; headerClasses?: ''; contentClasses?: ''; footerClasses?: ''; children?: any; } export interface CardIconProps { name: string; height?: number; width?: number; } /** * *__header__* : Boolean to show/hide header | optional | default is 'true' * *__footer__* : Boolean to show/hide footer | optional | default is 'true' * *__title__* : title of the card | optional * *__type__* : type of the card theme | default is 'primary' * *__rounded__* : Boolean to control card border radius | optional | default is 'false' * *__shadow__* : Boolean to control card shadow | optional | default is 'false' * *__paddingRequired__* : Boolean to control card content padding | optional * *__size__* : size of the header text | optional | default is 'small' * *__classnames__* : classnames to custom style the card | optional * *__contentXPosition__* : card content's horizontal position | optional | default is 'center' : 'start' | 'center' | 'end'; * *__contentYPosition__* : card content's vertical position | optional | default is 'center' : 'top' | 'center' | 'bottom'; * *__headerClasses__* : css classes for card header | optional * *__contentClasses__* : css classes for card content | optional * *__footerClasses__* : css classes for card footer | optional */ declare const Card: ({ variant, header, footer, title, size, rounded, shadow, paddingRequired, contentXPosition, contentYPosition, headerClasses, contentClasses, footerClasses, children, footerContent, }: CardProps) => import("react/jsx-runtime").JSX.Element; export interface CardContentProps { classnames?: string; children?: any; paddingRequired?: boolean; contentXPosition?: 'start' | 'center' | 'end'; contentYPosition?: 'top' | 'center' | 'bottom'; } export interface CardHeaderProps { variant: 'default' | 'primary' | 'success' | 'warning' | 'error'; size?: 'x-small' | 'small' | 'medium' | 'large'; title: string; rounded?: boolean; shadow?: boolean; classnames?: string; } export interface CardFooterProps { variant: 'default' | 'primary' | 'success' | 'warning' | 'error'; size?: 'x-small' | 'small' | 'medium' | 'large'; footerContent?: any; rounded?: boolean; shadow?: boolean; classnames?: string; } export default Card;