import type { ButtonExProps } from '@ariestools/sdk-react/button'; import type { ReactNode } from 'react'; import React from 'react'; import type { ExpansionProps } from '../../lib/index.js'; import type { IconSize } from './lib/index.js'; /** Props for {@link RawInfoButton}. */ export type RawInfoButtonProps = ButtonExProps & ExpansionProps & { dialogContent?: ReactNode; iconOnly?: boolean; iconSize?: number; onCloseCallback?: () => void; presetIconSize?: IconSize; rawValue?: unknown; }; /** Button that opens a raw JSON info dialog for an arbitrary value. */ export declare const RawInfoButton: React.FC; //# sourceMappingURL=RawInfoButton.d.ts.map