/** * The class name contract for the horizontal overflow component */ export interface HorizontalOverflowClassNameContract { /** * The root of the horizontal overflow component */ horizontalOverflow?: string; /** * The overflow items container */ horizontalOverflow_contentRegion?: string; /** * The overflow item(s) */ horizontalOverflow_item?: string; /** * The next scroll control */ horizontalOverflow_next?: string; /** * The previous scroll control */ horizontalOverflow_previous?: string; }