import { ControlLabels } from './ControlLabels'; interface SideLabels { label: string; decrementLabel: string; incrementLabel: string; } export interface VisualModeLabels { ['top']: SideLabels; ['right']: SideLabels; ['bottom']: SideLabels; ['left']: SideLabels; } export interface IndentsFormNameLabels { ['DESKTOP']: string; ['MOBILE']: string; ['RESPONSIVE_OFF']: string; } export interface IndentsInputsLabels { ['DESKTOP']: VisualModeLabels; ['MOBILE']: VisualModeLabels; ['RESPONSIVE_OFF']: VisualModeLabels; } export interface IndentsLockLabels { ['DESKTOP']: string; ['MOBILE']: string; ['RESPONSIVE_OFF']?: string; } /** * Interface for indent labels used in padding controls */ export interface IndentLabels extends ControlLabels { inputsLabels?: IndentsInputsLabels; lockLabels?: IndentsLockLabels; } export {};