import type { BlackoutError, SizeScale } from '@farfetch/blackout-client'; import type { CombinedState } from 'redux'; export type SizeScalesState = CombinedState<{ error: BlackoutError | null; isLoading: boolean; sizeScale: { error: Record; isLoading: Record; }; }>;