import { FC, HTMLAttributes } from 'react';
declare const Card: FC;
export interface CardProps extends HTMLAttributes {
/**
* padding right - sets the right padding of the card
*/
pr?: number;
/**
* padding left - sets the left padding of the card
*/
pl?: number;
/**
* padding top - sets the top padding of the card
*/
pt?: number;
/**
* padding bottom - sets the bottom padding of the card
*/
pb?: number;
/**
* padding - sets the padding of the card
*/
p?: number;
/**
* fullWidth - Card spans entire horizontal space if set to true
*/
fullWidth?: boolean;
/**
* width - set width of Card component
*/
width?: string | number;
/**
* bgColor: set background color of Card
*/
bgColor?: string;
/**
* br - Set border radius of the Card
*/
br?: number;
/**
* showShadow - when set to `true`, shows shadow in Card component
*/
showShadow?: boolean;
/**
* borderSize - size of card border
*/
borderSize?: number;
/**
* borderColor - color of card border line
*/
borderColor?: string;
}
export { Card };