export declare const ENDPOINTS: { readonly production: "https://api.ksef.mf.gov.pl/v2"; readonly demo: "https://api-demo.ksef.mf.gov.pl/v2"; readonly test: "https://api-test.ksef.mf.gov.pl/v2"; }; export type KsefEnvironment = keyof typeof ENDPOINTS; export declare const PATHS: { readonly authChallenge: "/auth/challenge"; readonly authKsefToken: "/auth/ksef-token"; readonly authStatus: (referenceNumber: string) => string; readonly authRedeem: "/auth/token/redeem"; readonly authRefresh: "/auth/token/refresh"; readonly sessionsList: "/auth/sessions"; readonly sessionRevokeCurrent: "/auth/sessions/current"; readonly sessionRevokeByRef: (referenceNumber: string) => string; readonly queryMetadata: "/invoices/query/metadata"; readonly invoiceByKsefNumber: (ksefNumber: string) => string; readonly invoiceStatus: (sessionRef: string, invoiceRef: string) => string; readonly invoiceUpoByKsefNumber: (sessionRef: string, ksefNumber: string) => string; readonly publicKeyCertificates: "/security/public-key-certificates"; }; //# sourceMappingURL=endpoints.d.ts.map