import React from 'react'; import PropTypes from 'prop-types'; export declare const CardPropTypes: { ({ align, isDark, headerSlot, img, title, body, children, handleClick, }: { align: string; isDark: boolean; headerSlot: React.ReactNode; img: string; title: string; body: string; children: React.ReactNode; handleClick: (count: number) => void; }): import("react/jsx-runtime").JSX.Element; defaultProps: { align: string; children: any; handleClick: () => void; isDark: boolean; }; propTypes: { /** * The card title */ title: PropTypes.Validator; /** * Card alignment */ align: PropTypes.Requireable; /** * Card content */ children: PropTypes.Requireable; /** * Header slot content */ headerSlot: PropTypes.Validator>; /** * Click handler function */ handleClick: PropTypes.Requireable<(...args: any[]) => any>; /** * Dark theme variant */ isDark: PropTypes.Requireable; /** * Card image URL */ img: PropTypes.Validator; /** * Card body text */ body: PropTypes.Validator; }; }; //# sourceMappingURL=card-prop-types.d.ts.map