import type { JSX } from "react"; declare const imageSrc: { "no-open-alerts": string; "search-not-found": string; "no-notes-found": string; }; type EmptyListMessageProps = { text: string; imageName?: keyof typeof imageSrc; dataTestId?: string; className?: string; }; export declare const EmptyListMessage: ({ text, imageName, dataTestId, className, }: EmptyListMessageProps) => JSX.Element; export {};