import type { ComponentProps, FC, PropsWithChildren, ReactNode } from "react"; export interface keepEmptyTheme { base: string; title: string; content: string; } export interface EmptyProps extends PropsWithChildren, "title">> { title?: string; content?: string; redirectUrl?: string; buttonText?: string; image?: ReactNode; } export declare const Empty: FC;