import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; export interface IIsLatLongProps { } /** * Check if the string is a valid latitude-longitude coordinate in the format: * `lat,long` or `lat, long`. */ export declare const isLatLong: (props?: TReferenceProps & IStringProps) => TStringValidatorResult;