import { SolidContainerUri, SolidLeafUri, SolidUri } from "../types.mjs"; //#region src/util/isSolidUri.d.ts /** * Checks if a provided string is a leaf URI * @param uri - the string to check * @returns true if the string is a leaf URI */ declare function isSolidUri(uri: string): uri is SolidUri; /** * Checks if a provided string is a Container URI * @param uri - the string to check * @returns true if the string is a container URI */ declare function isSolidContainerUri(uri: string): uri is SolidContainerUri; /** * Checks if a provided string is a leaf URI * @param uri - the string to check * @returns true if the string is a leaf URI */ declare function isSolidLeafUri(uri: string): uri is SolidLeafUri; //#endregion export { isSolidContainerUri, isSolidLeafUri, isSolidUri }; //# sourceMappingURL=isSolidUri.d.mts.map