import { ButtonGroupMetadata } from '../button-group/types'; import { TitleBlockMetada } from '../title-block/types'; export interface LayeredCardMetadata { token?: string; image?: string; actions?: ButtonGroupMetadata; content: TitleBlockMetada; bigSpace?: boolean; background?: string; hoverable?: boolean; withMin?: boolean; dark?: boolean; withOpacity?: boolean; mode: 'layered' | 'poster'; }