import React from 'react'; import type { PeripheralPrintUsage, PrintUsageState, SaasAppPeripheralProps } from '../types'; interface PrinterUsageModalProps { state?: PrintUsageState; variant?: SaasAppPeripheralProps['variant']; submitting: boolean; getText: (key: string) => string; onClose: () => void; onSelect: (usage: PeripheralPrintUsage) => void; } declare const PrinterUsageModal: React.FC; export default PrinterUsageModal;