import type { DeepPartial } from '@/interfaces/config.interface'; export interface IAddressTheme { backgroundColor: string; } export interface IAddressComponent { theme: IAddressTheme; } export type UpdateAddressComponent = DeepPartial;