import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; export interface IIsDataURIProps { } /** * Check if the string is a [data uri format](https://developer.mozilla.org/en-US/docs/Web/HTTP/data_URIs). */ export declare const isDataURI: (props?: TReferenceProps & IStringProps) => TStringValidatorResult;