/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { cardType, cardOrientation } from './interfaces/Enums'; import { PropType } from 'vue'; /** * @hidden */ export interface CardComputed { [key: string]: any; wrapperClass: object; } /** * @hidden */ declare const Card: import('vue').DefineComponent; type: { type: PropType; default: cardType; validator: (value: string) => any; }; orientation: { type: PropType; default: cardOrientation; validator: (value: string) => any; }; }>, {}, {}, { wrapperClass(): CardComputed['wrapperClass']; }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; type: { type: PropType; default: cardType; validator: (value: string) => any; }; orientation: { type: PropType; default: cardOrientation; validator: (value: string) => any; }; }>> & Readonly<{}>, { type: string; orientation: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { Card };