import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { BoxProps } from "../box/box.types.js";
import "../box/index.js";
//#region src/card/card.types.d.ts
type CardProps = Omit<BoxProps, 'size' | 'variant'> & ThemingProps<'Card'> & {
  /** Makes card clickable and focusable with correct styling. */
  isInteractive?: boolean;
};
//#endregion
export { CardProps };

//# sourceMappingURL=card.types.d.ts.map