import PDFContext from '../../core/PDFContext.js'; import PDFAcroButton from '../../core/acroform/PDFAcroButton.js'; import PDFDict from '../../core/objects/PDFDict.js'; import PDFName from '../../core/objects/PDFName.js'; import PDFRef from '../../core/objects/PDFRef.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; //# sourceMappingURL=PDFAcroRadioButton.d.ts.map