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 PDFAcroCheckBox extends PDFAcroButton { static fromDict: (dict: PDFDict, ref: PDFRef) => PDFAcroCheckBox; static create: (context: PDFContext) => PDFAcroCheckBox; setValue(value: PDFName): void; getValue(): PDFName; getOnValue(): PDFName | undefined; } export default PDFAcroCheckBox; //# sourceMappingURL=PDFAcroCheckBox.d.ts.map