import type { ReactNode } from 'react'; import React from 'react'; interface Props { title: string; illustration: ReactNode; onClick?: () => void; onClickLabel?: string; onDismiss?: () => void; onDismissLabel?: string; subtitle?: string; } export declare function ElementPlaceholder({ title, subtitle, illustration, onClick, onClickLabel, onDismiss, onDismissLabel, }: Props): React.JSX.Element; export {};