UNPKG

@dapplets/dapplet-extension

Version:
12 lines (11 loc) 397 B
import { ReactElement, ReactNode } from 'react'; export interface MessageProps { title: string; subtitle?: string | ReactElement; link?: string; linkText?: string; children?: ReactNode; className?: string; otherSubtitle?: boolean; } export declare const Message: ({ title, subtitle, link, linkText, children, className, otherSubtitle, }: MessageProps) => ReactElement;