import { ComponentProps } from 'react'; import { Button } from '../../atoms/Button/Button'; export interface JsonDialogProps { json: string; /** * The text to display on the button that opens the dialog. * @default "View JSON" */ dialogButtonText?: string; buttonProps?: ComponentProps; leftIcon?: JSX.Element; rightIcon?: JSX.Element; }