import { IStatusColor } from '../colors'; export interface ITransferToken { container: { width: number; height: number; }; panel: { backgroundColor: string; borderColor: string; checkboxMarginRight: number; header: { backgroundColor: string; paddingTop: number; paddingLeft: number; countColor: string; search: { paddingTop: number; paddingLeft: number; }; title: { color: string; weight: number; fontSize: number; }; }; list: { marginTop: number; }; item: { paddingTop: number; paddingLeft: number; lineHeight: number; background: IStatusColor; color: string; colorDisabled: string; fontSize: number; extraColor: string; }; footer: { backgroundColor: string; height: number; borderColor: string; }; }; iconContainer: { width: number; }; icon: { fontSize: number; color: string; }; }