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