import type { JsonValue } from '@ariestools/sdk'; import type { DialogProps } from '@mui/material'; import type { ReactNode } from 'react'; import React from 'react'; import type { ExpansionProps } from '../../../lib/index.js'; /** Props for {@link RawInfoDialog}. */ export interface RawInfoDialogProps extends DialogProps, ExpansionProps { dialogContent?: ReactNode; jsonValue?: JsonValue; onCloseCallback?: () => void; } /** Dialog that shows optional content and collapsible JSON for a raw value. */ export declare const RawInfoDialog: React.FC; //# sourceMappingURL=RawInfoDialog.d.ts.map