export interface FormaatPrinter { id: string; documenttype: string; formaat_code: string; printer_id: string | null; } export declare function useFormaatPrinters(documenttype: string): { koppelingen: FormaatPrinter[]; reload: () => Promise; }; export declare function zetFormaatPrinter(documenttype: string, formaat_code: string, printer_id: string | null): Promise; /** Bepaalt welke printer bij een formaat hoort (voor automatisch afdrukken). */ export declare function printerVoorFormaat(documenttype: string, formaat_code: string): Promise; /** Alle standaardkoppelingen (documentsoort + formaat), voor overzichten. */ export declare function useAlleFormaatPrinters(): { koppelingen: FormaatPrinter[]; reload: () => Promise; }; //# sourceMappingURL=formaatPrinters.d.ts.map