import * as react from 'react'; import { ComponentType } from 'react'; import { ComponentProps } from '@uniformdev/next-app-router/component'; import { ResolveEmptyPlaceholderOptions } from '../types/cskTypes.mjs'; import '@uniformdev/canvas'; import '@uniformdev/next-app-router'; import '@uniformdev/next-app-router-shared'; declare const DEFAULT_EMPTY_PLACEHOLDER: { component: () => react.JSX.Element; }; type EmptyPlaceholderMapping = Record { component: ComponentType> | null; }>; declare const createEmptyPlaceholderResolver: (mappings: EmptyPlaceholderMapping) => (props: ResolveEmptyPlaceholderOptions) => { component: () => react.JSX.Element; } | { component: ComponentType> | null; }; export { DEFAULT_EMPTY_PLACEHOLDER, type EmptyPlaceholderMapping, createEmptyPlaceholderResolver as default };