import type { Colors, ElProps } from '..'; declare type CardStampPositions = undefined | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end'; declare type CardStampSizes = undefined | 'sm' | 'md' | 'lg'; export interface StampProps extends Partial { bgColor?: Colors; textColor?: Colors; iconPosition?: CardStampPositions; size?: CardStampSizes; icon?: string; } export {};