import { ComponentType } from 'react'; import { ComponentProps } from '@uniformdev/next-app-router/component'; import { ResolveEmptyPlaceholderOptions } from '@/types/cskTypes'; export const DEFAULT_EMPTY_PLACEHOLDER = { component: () =>
}; export type EmptyPlaceholderMapping = Record< string, (props: ResolveEmptyPlaceholderOptions) => { // eslint-disable-next-line @typescript-eslint/no-explicit-any component: ComponentType