import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; export interface IIsMagnetURIProps { } /** * Check if the string is a [magnet uri format](https://en.wikipedia.org/wiki/Magnet_URI_scheme). */ export declare const isMagnetURI: (props?: TReferenceProps & IStringProps) => TStringValidatorResult;