import * as react_jsx_runtime from 'react/jsx-runtime';

type CardShapeProps = {
    disabled?: boolean;
    children?: React.ReactNode;
    isActivated?: boolean;
    onClick?: () => void;
};

declare const CardShape: (props: CardShapeProps) => react_jsx_runtime.JSX.Element;

export { CardShape, type CardShapeProps };
