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