/**
 * State options for {@link ViraCard}.
 *
 * @category Internal
 */
export declare enum ViraCardState {
    Error = "error",
    Success = "success"
}
/**
 * A simple wrapper "card" element that is just a `<slot>` with some styles.
 *
 * @category Elements
 * @see https://electrovir.github.io/vira/book/elements/vira-card
 */
export declare const ViraCard: import("element-vir").DeclarativeElementDefinition<"vira-card", {
    cardState?: ViraCardState | undefined;
}, {}, {}, "vira-card-error" | "vira-card-success", "vira-card-border" | "vira-card-padding", readonly [], readonly []>;
