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