import * as URLSearchParams from '@ungap/url-search-params'; import StringType from '../enums/StringType'; declare class StringTypeDetector { private input; private originalInput; private strippedInput; private type; private url; private searchParams; static validHosts: string[]; constructor(input: string); private isValidHost; private parse; getType(): StringType; getTypeName(): string; getStrippedInput(): string; getInput(): string; getRawInput(): string; getSearchParams(): URLSearchParams; isUrl(): boolean; } export default StringTypeDetector; //# sourceMappingURL=StringTypeDetector.d.ts.map