import { Picture } from "../../common";
type VirtualCardDisplay = {
    enable_card_color?: boolean;
    show_card_image_note?: boolean;
    image_note: string;
    face_color?: number;
    back_color?: number;
    use_user_address?: boolean;
    hide_address?: boolean;
    picture: Picture[];
};
export type { VirtualCardDisplay };
