import { SvelteComponentTyped } from "svelte";
import type { useAction } from '../../types/global';
import type { ColorProp, RtlProp, VariantProp } from '../../types/components/props';
declare const __propDef: {
    props: {
        color?: ColorProp;
        variant?: VariantProp;
        rtl?: RtlProp;
        useAction?: useAction<HTMLElement>;
        class?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        title: {};
        notification: {};
        default: {};
        actions: {};
    };
};
export declare type CardProps = typeof __propDef.props;
export declare type CardEvents = typeof __propDef.events;
export declare type CardSlots = typeof __propDef.slots;
export default class Card extends SvelteComponentTyped<CardProps, CardEvents, CardSlots> {
}
export {};
