import PDFRef from '../objects/PDFRef.js'; import PDFDict from '../objects/PDFDict.js'; import PDFName from '../objects/PDFName.js'; import PDFAcroButton from './PDFAcroButton.js'; import PDFContext from '../PDFContext.js'; declare class PDFAcroRadioButton extends PDFAcroButton { static fromDict: (dict: PDFDict, ref: PDFRef) => PDFAcroRadioButton; static create: (context: PDFContext) => PDFAcroRadioButton; setValue(value: PDFName): void; getValue(): PDFName; getOnValues(): PDFName[]; } export default PDFAcroRadioButton;