import type { ClickEventProps, ClickEventState, GlobalProps, GlobalState, SpacingProps } from '../../shared/model.js'; export declare const CardBehaviorList: readonly ["static", "interactive"]; export type CardBehaviorType = (typeof CardBehaviorList)[number]; export declare const CardElevationLevelList: readonly ["1", "2", "3"]; export type CardElevationLevelType = (typeof CardElevationLevelList)[number]; export type DBCardDefaultProps = { /** * Makes the card interactive */ behavior?: CardBehaviorType; /** * Changes the elevation of the card which is equal to `basic-background-level` */ elevationLevel?: CardElevationLevelType; }; export type DBCardProps = DBCardDefaultProps & GlobalProps & ClickEventProps & SpacingProps; export type DBCardDefaultState = {}; export type DBCardState = DBCardDefaultState & GlobalState & ClickEventState;