import React, { ReactNode } from 'react'; interface Props { caption?: ReactNode | string; shadow?: boolean; className?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type DisplayProps = Props & NativeAttrs; declare const Display: React.ForwardRefExoticComponent>; export default Display;