/** * Decode PURL component value from URL encoding. * @throws {PurlError} When component cannot be decoded. */ declare function decodePurlComponent(comp: string, encodedComponent: string): string; export { decodePurlComponent };