import { EmptyStatusConfig } from './config'; import { EmptyTypeInterface } from '../../config'; export type EmptyType = keyof typeof EmptyStatusConfig | keyof EmptyTypeInterface export type EmptyOption = { type?: EmptyType, src?: string, description?: string, hueRotate?: number } export type EmptyState = EmptyOption | EmptyType