/**
 * @license
 * Copyright 2026 Kai-Orion & Sandlada
 * SPDX-License-Identifier: MIT
 */
export declare const CardVariant: {
    readonly Elevated: 'elevated';
    readonly Filled: 'filled';
    readonly Outlined: 'outlined';
};
export type CardVariant = typeof CardVariant[keyof typeof CardVariant];
export declare const CardShape: {
    readonly Round: 'round';
    readonly Square: 'square';
};
export type CardShape = typeof CardShape[keyof typeof CardShape];
export interface ICard {
    variant: CardVariant;
    interactive: boolean;
    disabled: boolean;
    horizontal: boolean;
    shape: CardShape;
    href: string;
    target: string;
    cardTabIndex: number;
}
//# sourceMappingURL=card.interface.d.ts.map