import { ClickEventProps, ClickEventState, GlobalProps, GlobalState, SpacingProps } from '../../shared/model'; export declare const CardBehaviourList: readonly ["default", "interactive"]; export type CardBehaviourType = (typeof CardBehaviourList)[number]; export declare const CardElevationLevelList: readonly ["1", "2", "3"]; export type CardElevationLevelType = (typeof CardElevationLevelList)[number]; export type DBCardDefaultProps = { /** * Makes the card interactive */ behaviour?: CardBehaviourType; /** * 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;